fastaccess 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +137 -0
  3. data/Rakefile +38 -0
  4. data/lib/fastaccess.rb +13 -0
  5. data/lib/fastaccess/acts_with_fastaccess_on.rb +54 -0
  6. data/lib/fastaccess/fastaccess.rb +204 -0
  7. data/lib/fastaccess/mixins.rb +13 -0
  8. data/lib/fastaccess/version.rb +4 -0
  9. data/lib/generators/fastaccess/initialize_generator.rb +12 -0
  10. data/lib/generators/fastaccess/templates/initializer.rb +3 -0
  11. data/lib/tasks/fastaccess_tasks.rake +4 -0
  12. data/test/dummy/README.rdoc +261 -0
  13. data/test/dummy/Rakefile +7 -0
  14. data/test/dummy/app/assets/javascripts/application.js +15 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/models/simple_string.rb +42 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/config.ru +4 -0
  21. data/test/dummy/config/application.rb +59 -0
  22. data/test/dummy/config/boot.rb +10 -0
  23. data/test/dummy/config/database.yml +25 -0
  24. data/test/dummy/config/environment.rb +5 -0
  25. data/test/dummy/config/environments/development.rb +37 -0
  26. data/test/dummy/config/environments/production.rb +67 -0
  27. data/test/dummy/config/environments/test.rb +37 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/fastaccess.rb +3 -0
  30. data/test/dummy/config/initializers/inflections.rb +15 -0
  31. data/test/dummy/config/initializers/mime_types.rb +5 -0
  32. data/test/dummy/config/initializers/redis.rb +1 -0
  33. data/test/dummy/config/initializers/secret_token.rb +7 -0
  34. data/test/dummy/config/initializers/session_store.rb +8 -0
  35. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  36. data/test/dummy/config/locales/en.yml +5 -0
  37. data/test/dummy/config/routes.rb +58 -0
  38. data/test/dummy/db/development.sqlite3 +0 -0
  39. data/test/dummy/db/migrate/20130123183844_create_simple_strings.rb +8 -0
  40. data/test/dummy/db/migrate/20130124180635_add_some_string_to_simple_string.rb +5 -0
  41. data/test/dummy/db/schema.rb +22 -0
  42. data/test/dummy/db/test.sqlite3 +0 -0
  43. data/test/dummy/log/development.log +58 -0
  44. data/test/dummy/log/test.log +1575 -0
  45. data/test/dummy/public/404.html +26 -0
  46. data/test/dummy/public/422.html +26 -0
  47. data/test/dummy/public/500.html +25 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/dummy/script/rails +6 -0
  50. data/test/dummy/test/fixtures/simple_strings.yml +11 -0
  51. data/test/dummy/test/unit/simple_string_test.rb +7 -0
  52. data/test/fastaccess_test.rb +76 -0
  53. data/test/test_helper.rb +15 -0
  54. metadata +174 -0
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ Fastaccess.setup do
2
+ set_redis Redis.new(:host => 'localhost', :port => 6379)
3
+ end
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1 @@
1
+ $redis = Redis.new
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '4d0e11b21beab13d0e99385bdcaeb7ef4f4479afad2220ecea6425daed7d66983bd0d6915d5f4d2eac1078a8d220aedea561e414b09fa356541752f436f79a55'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id))(.:format)'
58
+ end
@@ -0,0 +1,8 @@
1
+ class CreateSimpleStrings < ActiveRecord::Migration
2
+ def change
3
+ create_table :simple_strings do |t|
4
+
5
+ t.timestamps
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ class AddSomeStringToSimpleString < ActiveRecord::Migration
2
+ def change
3
+ add_column :simple_strings, :some_string, :string
4
+ end
5
+ end
@@ -0,0 +1,22 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20130124180635) do
15
+
16
+ create_table "simple_strings", :force => true do |t|
17
+ t.datetime "created_at", :null => false
18
+ t.datetime "updated_at", :null => false
19
+ t.string "some_string"
20
+ end
21
+
22
+ end
@@ -0,0 +1,58 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+  (0.2ms) select sqlite_version(*)
5
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (4.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
8
+ Migrating to CreateSimpleStrings (20130123183844)
9
+  (0.0ms) begin transaction
10
+  (0.4ms) CREATE TABLE "simple_strings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
11
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130123183844')
12
+  (1.0ms) commit transaction
13
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14
+ Connecting to database specified by database.yml
15
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16
+  (0.2ms) select sqlite_version(*)
17
+  (1.4ms) CREATE TABLE "simple_strings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
18
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
19
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
+  (0.1ms) SELECT version FROM "schema_migrations"
21
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130123183844')
22
+ Connecting to database specified by database.yml
23
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
24
+  (0.4ms) select sqlite_version(*)
25
+  (2.3ms) CREATE TABLE "simple_strings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
26
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
27
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
28
+  (0.1ms) SELECT version FROM "schema_migrations"
29
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130123183844')
30
+ Connecting to database specified by database.yml
31
+ Connecting to database specified by database.yml
32
+ Connecting to database specified by database.yml
33
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
34
+ Migrating to CreateSimpleStrings (20130123183844)
35
+ Migrating to AddSomeStringToSimpleString (20130124180635)
36
+  (0.0ms) select sqlite_version(*)
37
+  (0.0ms) begin transaction
38
+  (0.5ms) ALTER TABLE "simple_strings" ADD "some_string" varchar(255)
39
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130124180635')
40
+  (2.4ms) commit transaction
41
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
42
+ Connecting to database specified by database.yml
43
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
44
+  (0.3ms) select sqlite_version(*)
45
+  (1.9ms) CREATE TABLE "simple_strings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "some_string" varchar(255)) 
46
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
47
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
48
+  (0.1ms) SELECT version FROM "schema_migrations"
49
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130124180635')
50
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130123183844')
51
+ Connecting to database specified by database.yml
52
+ Connecting to database specified by database.yml
53
+ Connecting to database specified by database.yml
54
+ Connecting to database specified by database.yml
55
+ Connecting to database specified by database.yml
56
+ Connecting to database specified by database.yml
57
+ Connecting to database specified by database.yml
58
+ Connecting to database specified by database.yml
@@ -0,0 +1,1575 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
6
+ Connecting to database specified by database.yml
7
+ Connecting to database specified by database.yml
8
+  (0.5ms) begin transaction
9
+  (0.0ms) SAVEPOINT active_record_1
10
+ SQL (12.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Wed, 23 Jan 2013 19:15:32 UTC +00:00], ["updated_at", Wed, 23 Jan 2013 19:15:32 UTC +00:00]]
11
+  (0.1ms) RELEASE SAVEPOINT active_record_1
12
+  (0.3ms) rollback transaction
13
+  (0.1ms) begin transaction
14
+  (0.1ms) rollback transaction
15
+ Connecting to database specified by database.yml
16
+  (12.8ms) begin transaction
17
+  (0.1ms) SAVEPOINT active_record_1
18
+ SQL (12.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Wed, 23 Jan 2013 21:02:48 UTC +00:00], ["updated_at", Wed, 23 Jan 2013 21:02:48 UTC +00:00]]
19
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20
+  (0.4ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+  (0.0ms) SAVEPOINT active_record_1
23
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Wed, 23 Jan 2013 21:02:48 UTC +00:00], ["updated_at", Wed, 23 Jan 2013 21:02:48 UTC +00:00]]
24
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25
+  (0.3ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+  (0.0ms) rollback transaction
28
+ Connecting to database specified by database.yml
29
+  (0.5ms) begin transaction
30
+  (0.1ms) SAVEPOINT active_record_1
31
+ SQL (5.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Wed, 23 Jan 2013 21:05:56 UTC +00:00], ["updated_at", Wed, 23 Jan 2013 21:05:56 UTC +00:00]]
32
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33
+  (1.6ms) rollback transaction
34
+  (0.1ms) begin transaction
35
+  (0.0ms) SAVEPOINT active_record_1
36
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Wed, 23 Jan 2013 21:05:56 UTC +00:00], ["updated_at", Wed, 23 Jan 2013 21:05:56 UTC +00:00]]
37
+  (0.0ms) RELEASE SAVEPOINT active_record_1
38
+  (0.3ms) rollback transaction
39
+  (0.1ms) begin transaction
40
+  (0.1ms) rollback transaction
41
+ Connecting to database specified by database.yml
42
+  (0.5ms) begin transaction
43
+  (0.0ms) rollback transaction
44
+  (0.0ms) begin transaction
45
+  (0.1ms) SAVEPOINT active_record_1
46
+ SQL (4.8ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Wed, 23 Jan 2013 21:12:57 UTC +00:00], ["updated_at", Wed, 23 Jan 2013 21:12:57 UTC +00:00]]
47
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48
+  (1.7ms) rollback transaction
49
+  (0.1ms) begin transaction
50
+  (0.1ms) SAVEPOINT active_record_1
51
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Wed, 23 Jan 2013 21:12:57 UTC +00:00], ["updated_at", Wed, 23 Jan 2013 21:12:57 UTC +00:00]]
52
+  (0.1ms) RELEASE SAVEPOINT active_record_1
53
+  (0.4ms) rollback transaction
54
+  (0.1ms) begin transaction
55
+  (0.0ms) rollback transaction
56
+ Connecting to database specified by database.yml
57
+  (13.1ms) begin transaction
58
+  (0.0ms) SAVEPOINT active_record_1
59
+ SQL (11.1ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00]]
60
+  (0.1ms) RELEASE SAVEPOINT active_record_1
61
+  (0.5ms) rollback transaction
62
+  (0.1ms) begin transaction
63
+  (0.0ms) SAVEPOINT active_record_1
64
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00]]
65
+  (0.0ms) RELEASE SAVEPOINT active_record_1
66
+  (0.4ms) rollback transaction
67
+  (0.1ms) begin transaction
68
+  (0.0ms) SAVEPOINT active_record_1
69
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00]]
70
+  (0.0ms) RELEASE SAVEPOINT active_record_1
71
+  (0.3ms) rollback transaction
72
+  (0.1ms) begin transaction
73
+  (0.0ms) SAVEPOINT active_record_1
74
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00]]
75
+  (0.0ms) RELEASE SAVEPOINT active_record_1
76
+  (0.4ms) rollback transaction
77
+  (0.1ms) begin transaction
78
+  (0.1ms) SAVEPOINT active_record_1
79
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:05:08 UTC +00:00]]
80
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81
+  (0.4ms) rollback transaction
82
+  (0.0ms) begin transaction
83
+  (0.0ms) rollback transaction
84
+ Connecting to database specified by database.yml
85
+ Connecting to database specified by database.yml
86
+  (11.5ms) begin transaction
87
+  (0.0ms) SAVEPOINT active_record_1
88
+ SQL (8.0ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00]]
89
+  (0.1ms) RELEASE SAVEPOINT active_record_1
90
+  (0.3ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+  (0.0ms) SAVEPOINT active_record_1
93
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00]]
94
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95
+  (0.3ms) rollback transaction
96
+  (0.0ms) begin transaction
97
+  (0.0ms) SAVEPOINT active_record_1
98
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00]]
99
+  (0.0ms) RELEASE SAVEPOINT active_record_1
100
+  (0.2ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+  (0.0ms) SAVEPOINT active_record_1
103
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00]]
104
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105
+  (0.3ms) rollback transaction
106
+  (0.0ms) begin transaction
107
+  (0.0ms) SAVEPOINT active_record_1
108
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:27:55 UTC +00:00]]
109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110
+  (0.3ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+  (0.0ms) rollback transaction
113
+ Connecting to database specified by database.yml
114
+  (0.6ms) begin transaction
115
+  (0.1ms) SAVEPOINT active_record_1
116
+ SQL (7.0ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:29:12 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:29:12 UTC +00:00]]
117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
118
+  (1.6ms) rollback transaction
119
+  (0.1ms) begin transaction
120
+  (0.0ms) SAVEPOINT active_record_1
121
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:29:13 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:29:13 UTC +00:00]]
122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
123
+  (0.5ms) rollback transaction
124
+  (0.0ms) begin transaction
125
+  (0.0ms) SAVEPOINT active_record_1
126
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:29:13 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:29:13 UTC +00:00]]
127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
128
+  (0.3ms) rollback transaction
129
+  (0.1ms) begin transaction
130
+  (0.0ms) SAVEPOINT active_record_1
131
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:29:13 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:29:13 UTC +00:00]]
132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
133
+  (0.3ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+  (0.0ms) SAVEPOINT active_record_1
136
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:29:13 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:29:13 UTC +00:00]]
137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
138
+  (0.3ms) rollback transaction
139
+  (0.0ms) begin transaction
140
+  (0.0ms) rollback transaction
141
+ Connecting to database specified by database.yml
142
+  (0.5ms) begin transaction
143
+  (0.0ms) SAVEPOINT active_record_1
144
+ SQL (5.0ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00]]
145
+  (0.1ms) RELEASE SAVEPOINT active_record_1
146
+  (1.7ms) rollback transaction
147
+  (0.1ms) begin transaction
148
+  (0.0ms) SAVEPOINT active_record_1
149
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00]]
150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
151
+  (0.3ms) rollback transaction
152
+  (0.0ms) begin transaction
153
+  (0.0ms) SAVEPOINT active_record_1
154
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00]]
155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
156
+  (0.3ms) rollback transaction
157
+  (0.0ms) begin transaction
158
+  (0.0ms) SAVEPOINT active_record_1
159
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00]]
160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
161
+  (0.3ms) rollback transaction
162
+  (0.0ms) begin transaction
163
+  (0.0ms) SAVEPOINT active_record_1
164
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:43:54 UTC +00:00]]
165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
166
+  (0.3ms) rollback transaction
167
+  (0.0ms) begin transaction
168
+  (0.0ms) rollback transaction
169
+ Connecting to database specified by database.yml
170
+  (0.5ms) begin transaction
171
+  (0.0ms) SAVEPOINT active_record_1
172
+ SQL (5.1ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00]]
173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
174
+  (1.7ms) rollback transaction
175
+  (0.1ms) begin transaction
176
+  (0.0ms) SAVEPOINT active_record_1
177
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00]]
178
+  (0.0ms) RELEASE SAVEPOINT active_record_1
179
+  (0.3ms) rollback transaction
180
+  (0.1ms) begin transaction
181
+  (0.0ms) SAVEPOINT active_record_1
182
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00]]
183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
184
+  (0.3ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+  (0.0ms) SAVEPOINT active_record_1
187
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00]]
188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189
+  (0.8ms) rollback transaction
190
+  (0.0ms) begin transaction
191
+  (0.0ms) SAVEPOINT active_record_1
192
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:47:01 UTC +00:00]]
193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
194
+  (0.3ms) rollback transaction
195
+  (0.1ms) begin transaction
196
+  (0.0ms) rollback transaction
197
+ Connecting to database specified by database.yml
198
+  (0.5ms) begin transaction
199
+  (0.1ms) SAVEPOINT active_record_1
200
+ SQL (5.6ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00]]
201
+  (0.1ms) RELEASE SAVEPOINT active_record_1
202
+  (1.7ms) rollback transaction
203
+  (0.1ms) begin transaction
204
+  (0.1ms) SAVEPOINT active_record_1
205
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00]]
206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
207
+  (0.3ms) rollback transaction
208
+  (0.1ms) begin transaction
209
+  (0.0ms) SAVEPOINT active_record_1
210
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00]]
211
+  (0.0ms) RELEASE SAVEPOINT active_record_1
212
+  (0.3ms) rollback transaction
213
+  (0.0ms) begin transaction
214
+  (0.0ms) SAVEPOINT active_record_1
215
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00]]
216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
217
+  (0.3ms) rollback transaction
218
+  (0.0ms) begin transaction
219
+  (0.0ms) SAVEPOINT active_record_1
220
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00], ["updated_at", Thu, 24 Jan 2013 14:48:33 UTC +00:00]]
221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
222
+  (0.2ms) rollback transaction
223
+  (0.0ms) begin transaction
224
+  (0.0ms) rollback transaction
225
+ Connecting to database specified by database.yml
226
+  (0.5ms) begin transaction
227
+  (0.1ms) SAVEPOINT active_record_1
228
+ SQL (6.2ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00]]
229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
230
+  (0.1ms) SAVEPOINT active_record_1
231
+  (0.3ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-24 18:11:15.366293' WHERE "simple_strings"."id" = 1
232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
233
+  (0.3ms) rollback transaction
234
+  (0.1ms) begin transaction
235
+  (0.0ms) SAVEPOINT active_record_1
236
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00]]
237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238
+  (0.3ms) rollback transaction
239
+  (0.0ms) begin transaction
240
+  (0.0ms) SAVEPOINT active_record_1
241
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00]]
242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
243
+  (0.3ms) rollback transaction
244
+  (0.0ms) begin transaction
245
+  (0.0ms) SAVEPOINT active_record_1
246
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00]]
247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
248
+  (0.2ms) rollback transaction
249
+  (0.0ms) begin transaction
250
+  (0.0ms) SAVEPOINT active_record_1
251
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00]]
252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
253
+  (0.3ms) rollback transaction
254
+  (0.0ms) begin transaction
255
+  (0.0ms) SAVEPOINT active_record_1
256
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 18:11:15 UTC +00:00]]
257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
258
+  (0.3ms) rollback transaction
259
+  (0.0ms) begin transaction
260
+  (0.0ms) rollback transaction
261
+ Connecting to database specified by database.yml
262
+  (0.5ms) begin transaction
263
+  (0.1ms) SAVEPOINT active_record_1
264
+ SQL (8.0ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00]]
265
+  (0.1ms) RELEASE SAVEPOINT active_record_1
266
+  (0.1ms) SAVEPOINT active_record_1
267
+  (4.7ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-24 20:10:06.020542' WHERE "simple_strings"."id" = 1
268
+  (0.1ms) RELEASE SAVEPOINT active_record_1
269
+  (3.6ms) rollback transaction
270
+  (0.1ms) begin transaction
271
+  (0.0ms) SAVEPOINT active_record_1
272
+ SQL (0.8ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00]]
273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
274
+  (0.4ms) rollback transaction
275
+  (0.1ms) begin transaction
276
+  (0.0ms) SAVEPOINT active_record_1
277
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00]]
278
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279
+  (0.3ms) rollback transaction
280
+  (0.1ms) begin transaction
281
+  (0.0ms) SAVEPOINT active_record_1
282
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00]]
283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
284
+  (0.3ms) rollback transaction
285
+  (0.1ms) begin transaction
286
+  (0.0ms) SAVEPOINT active_record_1
287
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00]]
288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
289
+  (0.3ms) rollback transaction
290
+  (0.1ms) begin transaction
291
+  (0.0ms) SAVEPOINT active_record_1
292
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:10:06 UTC +00:00]]
293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
294
+  (0.3ms) rollback transaction
295
+  (0.1ms) begin transaction
296
+  (0.0ms) rollback transaction
297
+ Connecting to database specified by database.yml
298
+  (0.5ms) begin transaction
299
+  (0.1ms) SAVEPOINT active_record_1
300
+ SQL (6.1ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00]]
301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
302
+  (1.7ms) rollback transaction
303
+  (0.1ms) begin transaction
304
+  (0.0ms) SAVEPOINT active_record_1
305
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00]]
306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
307
+  (0.4ms) rollback transaction
308
+  (0.1ms) begin transaction
309
+  (0.0ms) SAVEPOINT active_record_1
310
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00]]
311
+  (0.0ms) RELEASE SAVEPOINT active_record_1
312
+  (0.4ms) rollback transaction
313
+  (0.0ms) begin transaction
314
+  (0.0ms) SAVEPOINT active_record_1
315
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00]]
316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
317
+  (0.4ms) rollback transaction
318
+  (0.0ms) begin transaction
319
+  (0.0ms) SAVEPOINT active_record_1
320
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00]]
321
+  (0.1ms) RELEASE SAVEPOINT active_record_1
322
+  (0.3ms) rollback transaction
323
+  (0.0ms) begin transaction
324
+  (0.0ms) SAVEPOINT active_record_1
325
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:04 UTC +00:00]]
326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
327
+  (0.3ms) rollback transaction
328
+  (0.1ms) begin transaction
329
+  (0.1ms) rollback transaction
330
+ Connecting to database specified by database.yml
331
+  (0.5ms) begin transaction
332
+  (0.1ms) SAVEPOINT active_record_1
333
+ SQL (5.8ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00]]
334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
335
+  (1.6ms) rollback transaction
336
+  (0.1ms) begin transaction
337
+  (0.0ms) SAVEPOINT active_record_1
338
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00]]
339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
340
+  (0.4ms) rollback transaction
341
+  (0.0ms) begin transaction
342
+  (0.0ms) SAVEPOINT active_record_1
343
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00]]
344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
345
+  (0.3ms) rollback transaction
346
+  (0.0ms) begin transaction
347
+  (0.0ms) SAVEPOINT active_record_1
348
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00]]
349
+  (0.1ms) RELEASE SAVEPOINT active_record_1
350
+  (0.3ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+  (0.0ms) SAVEPOINT active_record_1
353
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00]]
354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
355
+  (0.3ms) rollback transaction
356
+  (0.0ms) begin transaction
357
+  (0.0ms) SAVEPOINT active_record_1
358
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:21:41 UTC +00:00]]
359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
360
+  (1.2ms) rollback transaction
361
+  (0.0ms) begin transaction
362
+  (0.0ms) rollback transaction
363
+ Connecting to database specified by database.yml
364
+  (0.5ms) begin transaction
365
+  (0.1ms) SAVEPOINT active_record_1
366
+ SQL (5.7ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00]]
367
+  (0.1ms) RELEASE SAVEPOINT active_record_1
368
+  (0.1ms) SAVEPOINT active_record_1
369
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-24 20:22:59.461488' WHERE "simple_strings"."id" = 1
370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
371
+  (1.7ms) rollback transaction
372
+  (0.1ms) begin transaction
373
+  (0.0ms) SAVEPOINT active_record_1
374
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00]]
375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
376
+  (0.3ms) rollback transaction
377
+  (0.1ms) begin transaction
378
+  (0.0ms) SAVEPOINT active_record_1
379
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00]]
380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
381
+  (0.3ms) rollback transaction
382
+  (0.0ms) begin transaction
383
+  (0.0ms) SAVEPOINT active_record_1
384
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00]]
385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
386
+  (0.3ms) rollback transaction
387
+  (0.0ms) begin transaction
388
+  (0.0ms) SAVEPOINT active_record_1
389
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00]]
390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
391
+  (0.3ms) rollback transaction
392
+  (0.0ms) begin transaction
393
+  (0.0ms) SAVEPOINT active_record_1
394
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:22:59 UTC +00:00]]
395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
396
+  (0.3ms) rollback transaction
397
+  (0.0ms) begin transaction
398
+  (0.0ms) rollback transaction
399
+ Connecting to database specified by database.yml
400
+  (0.5ms) begin transaction
401
+  (0.1ms) SAVEPOINT active_record_1
402
+ SQL (7.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00]]
403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
404
+  (0.1ms) SAVEPOINT active_record_1
405
+  (3.7ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-24 20:26:20.928129' WHERE "simple_strings"."id" = 1
406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
407
+  (5.3ms) rollback transaction
408
+  (0.1ms) begin transaction
409
+  (0.1ms) SAVEPOINT active_record_1
410
+ SQL (1.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00]]
411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
412
+  (0.3ms) rollback transaction
413
+  (0.1ms) begin transaction
414
+  (0.0ms) SAVEPOINT active_record_1
415
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00]]
416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
417
+  (0.3ms) rollback transaction
418
+  (0.0ms) begin transaction
419
+  (0.0ms) SAVEPOINT active_record_1
420
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00]]
421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
422
+  (0.3ms) rollback transaction
423
+  (0.1ms) begin transaction
424
+  (0.0ms) SAVEPOINT active_record_1
425
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00]]
426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
427
+  (0.2ms) rollback transaction
428
+  (0.1ms) begin transaction
429
+  (0.0ms) SAVEPOINT active_record_1
430
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 24 Jan 2013 20:26:20 UTC +00:00]]
431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
432
+  (0.2ms) rollback transaction
433
+  (0.0ms) begin transaction
434
+  (0.0ms) rollback transaction
435
+ Connecting to database specified by database.yml
436
+  (11.1ms) begin transaction
437
+  (0.1ms) SAVEPOINT active_record_1
438
+ SQL (12.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00]]
439
+  (0.1ms) RELEASE SAVEPOINT active_record_1
440
+  (0.1ms) SAVEPOINT active_record_1
441
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 10:29:54.160889' WHERE "simple_strings"."id" = 1
442
+  (0.1ms) RELEASE SAVEPOINT active_record_1
443
+  (0.5ms) rollback transaction
444
+  (0.1ms) begin transaction
445
+  (0.1ms) SAVEPOINT active_record_1
446
+ SQL (0.6ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00]]
447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
448
+  (0.4ms) rollback transaction
449
+  (0.1ms) begin transaction
450
+  (0.0ms) SAVEPOINT active_record_1
451
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00]]
452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
453
+  (0.4ms) rollback transaction
454
+  (0.1ms) begin transaction
455
+  (0.1ms) SAVEPOINT active_record_1
456
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00]]
457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
458
+  (0.3ms) rollback transaction
459
+  (0.1ms) begin transaction
460
+  (0.0ms) SAVEPOINT active_record_1
461
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00]]
462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
463
+  (0.2ms) rollback transaction
464
+  (0.1ms) begin transaction
465
+  (0.0ms) SAVEPOINT active_record_1
466
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00]]
467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
468
+  (0.4ms) rollback transaction
469
+  (0.1ms) begin transaction
470
+  (0.1ms) SAVEPOINT active_record_1
471
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 10:29:54 UTC +00:00]]
472
+  (0.1ms) RELEASE SAVEPOINT active_record_1
473
+  (0.3ms) rollback transaction
474
+  (0.1ms) begin transaction
475
+  (0.1ms) rollback transaction
476
+ Connecting to database specified by database.yml
477
+  (10.9ms) begin transaction
478
+  (0.1ms) SAVEPOINT active_record_1
479
+ SQL (17.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00]]
480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
481
+  (0.1ms) SAVEPOINT active_record_1
482
+  (0.9ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:00:04.030575' WHERE "simple_strings"."id" = 1
483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
484
+  (0.4ms) rollback transaction
485
+  (0.1ms) begin transaction
486
+  (0.0ms) SAVEPOINT active_record_1
487
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00]]
488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
489
+  (0.3ms) rollback transaction
490
+  (0.1ms) begin transaction
491
+  (0.0ms) SAVEPOINT active_record_1
492
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00]]
493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
494
+  (0.3ms) rollback transaction
495
+  (0.1ms) begin transaction
496
+  (0.0ms) SAVEPOINT active_record_1
497
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00]]
498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
499
+  (0.3ms) rollback transaction
500
+  (0.1ms) begin transaction
501
+  (0.0ms) SAVEPOINT active_record_1
502
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00]]
503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
504
+  (0.3ms) rollback transaction
505
+  (0.0ms) begin transaction
506
+  (0.0ms) SAVEPOINT active_record_1
507
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00]]
508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
509
+  (0.3ms) rollback transaction
510
+  (0.1ms) begin transaction
511
+  (0.0ms) SAVEPOINT active_record_1
512
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:00:04 UTC +00:00]]
513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
514
+  (0.3ms) rollback transaction
515
+  (0.1ms) begin transaction
516
+  (0.0ms) rollback transaction
517
+ Connecting to database specified by database.yml
518
+  (13.8ms) begin transaction
519
+  (0.0ms) SAVEPOINT active_record_1
520
+ SQL (8.9ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00]]
521
+  (0.1ms) RELEASE SAVEPOINT active_record_1
522
+  (0.1ms) SAVEPOINT active_record_1
523
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:17:31.271445' WHERE "simple_strings"."id" = 1
524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
525
+  (0.4ms) rollback transaction
526
+  (0.1ms) begin transaction
527
+  (0.0ms) SAVEPOINT active_record_1
528
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00]]
529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
530
+  (0.3ms) rollback transaction
531
+  (0.0ms) begin transaction
532
+  (0.0ms) SAVEPOINT active_record_1
533
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00]]
534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
535
+  (0.3ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+  (0.0ms) SAVEPOINT active_record_1
538
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00]]
539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
540
+  (0.3ms) rollback transaction
541
+  (0.0ms) begin transaction
542
+  (0.0ms) SAVEPOINT active_record_1
543
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00]]
544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
545
+  (0.3ms) rollback transaction
546
+  (0.0ms) begin transaction
547
+  (0.0ms) SAVEPOINT active_record_1
548
+ SQL (0.2ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00]]
549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
550
+  (0.3ms) rollback transaction
551
+  (0.0ms) begin transaction
552
+  (0.0ms) SAVEPOINT active_record_1
553
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:17:31 UTC +00:00]]
554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
555
+  (0.3ms) rollback transaction
556
+  (0.0ms) begin transaction
557
+  (0.0ms) rollback transaction
558
+ Connecting to database specified by database.yml
559
+  (0.5ms) begin transaction
560
+  (0.0ms) SAVEPOINT active_record_1
561
+ SQL (6.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00]]
562
+  (0.1ms) RELEASE SAVEPOINT active_record_1
563
+  (0.1ms) SAVEPOINT active_record_1
564
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:18:35.824965' WHERE "simple_strings"."id" = 1
565
+  (0.1ms) RELEASE SAVEPOINT active_record_1
566
+  (1.8ms) rollback transaction
567
+  (0.1ms) begin transaction
568
+  (0.0ms) SAVEPOINT active_record_1
569
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00]]
570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
571
+  (0.3ms) rollback transaction
572
+  (0.0ms) begin transaction
573
+  (0.0ms) SAVEPOINT active_record_1
574
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00]]
575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
576
+  (0.3ms) rollback transaction
577
+  (0.0ms) begin transaction
578
+  (0.0ms) SAVEPOINT active_record_1
579
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00]]
580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
581
+  (0.3ms) rollback transaction
582
+  (0.0ms) begin transaction
583
+  (0.0ms) SAVEPOINT active_record_1
584
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00]]
585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
586
+  (0.4ms) rollback transaction
587
+  (0.1ms) begin transaction
588
+  (0.0ms) SAVEPOINT active_record_1
589
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00]]
590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
591
+  (0.3ms) rollback transaction
592
+  (0.0ms) begin transaction
593
+  (0.0ms) SAVEPOINT active_record_1
594
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:18:35 UTC +00:00]]
595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
596
+  (0.2ms) rollback transaction
597
+  (0.1ms) begin transaction
598
+  (0.0ms) rollback transaction
599
+ Connecting to database specified by database.yml
600
+  (0.5ms) begin transaction
601
+  (0.0ms) SAVEPOINT active_record_1
602
+ SQL (5.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00]]
603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
604
+  (0.1ms) SAVEPOINT active_record_1
605
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:21:36.722736' WHERE "simple_strings"."id" = 1
606
+  (0.1ms) RELEASE SAVEPOINT active_record_1
607
+  (1.6ms) rollback transaction
608
+  (0.1ms) begin transaction
609
+  (0.0ms) SAVEPOINT active_record_1
610
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00]]
611
+  (0.1ms) RELEASE SAVEPOINT active_record_1
612
+  (0.3ms) rollback transaction
613
+  (0.1ms) begin transaction
614
+  (0.0ms) SAVEPOINT active_record_1
615
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00]]
616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
617
+  (0.3ms) rollback transaction
618
+  (0.1ms) begin transaction
619
+  (0.0ms) SAVEPOINT active_record_1
620
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00]]
621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
622
+  (0.3ms) rollback transaction
623
+  (0.1ms) begin transaction
624
+  (0.0ms) SAVEPOINT active_record_1
625
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00]]
626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
627
+  (0.3ms) rollback transaction
628
+  (0.0ms) begin transaction
629
+  (0.0ms) SAVEPOINT active_record_1
630
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00]]
631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
632
+  (0.3ms) rollback transaction
633
+  (0.1ms) begin transaction
634
+  (0.0ms) SAVEPOINT active_record_1
635
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:21:36 UTC +00:00]]
636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
637
+  (0.3ms) rollback transaction
638
+  (0.0ms) begin transaction
639
+  (0.0ms) rollback transaction
640
+ Connecting to database specified by database.yml
641
+  (0.5ms) begin transaction
642
+  (0.1ms) SAVEPOINT active_record_1
643
+ SQL (5.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00]]
644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
645
+  (0.1ms) SAVEPOINT active_record_1
646
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:22:03.627019' WHERE "simple_strings"."id" = 1
647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
648
+  (1.7ms) rollback transaction
649
+  (0.1ms) begin transaction
650
+  (0.0ms) SAVEPOINT active_record_1
651
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00]]
652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
653
+  (0.3ms) rollback transaction
654
+  (0.1ms) begin transaction
655
+  (0.0ms) SAVEPOINT active_record_1
656
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00]]
657
+  (0.0ms) RELEASE SAVEPOINT active_record_1
658
+  (0.3ms) rollback transaction
659
+  (0.0ms) begin transaction
660
+  (0.0ms) SAVEPOINT active_record_1
661
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00]]
662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
663
+  (0.3ms) rollback transaction
664
+  (0.0ms) begin transaction
665
+  (0.0ms) SAVEPOINT active_record_1
666
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00]]
667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
668
+  (0.2ms) rollback transaction
669
+  (0.0ms) begin transaction
670
+  (0.0ms) SAVEPOINT active_record_1
671
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00]]
672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
673
+  (0.3ms) rollback transaction
674
+  (0.0ms) begin transaction
675
+  (0.0ms) SAVEPOINT active_record_1
676
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:03 UTC +00:00]]
677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
678
+  (0.3ms) rollback transaction
679
+  (0.0ms) begin transaction
680
+  (0.0ms) rollback transaction
681
+ Connecting to database specified by database.yml
682
+  (0.5ms) begin transaction
683
+  (0.1ms) SAVEPOINT active_record_1
684
+ SQL (5.0ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00]]
685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
686
+  (0.1ms) SAVEPOINT active_record_1
687
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:22:44.027807' WHERE "simple_strings"."id" = 1
688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
689
+  (1.7ms) rollback transaction
690
+  (0.1ms) begin transaction
691
+  (0.0ms) SAVEPOINT active_record_1
692
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00]]
693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
694
+  (0.3ms) rollback transaction
695
+  (0.0ms) begin transaction
696
+  (0.0ms) SAVEPOINT active_record_1
697
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00]]
698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
699
+  (0.3ms) rollback transaction
700
+  (0.0ms) begin transaction
701
+  (0.0ms) SAVEPOINT active_record_1
702
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00]]
703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
704
+  (0.3ms) rollback transaction
705
+  (0.1ms) begin transaction
706
+  (0.0ms) SAVEPOINT active_record_1
707
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00]]
708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
709
+  (0.2ms) rollback transaction
710
+  (0.0ms) begin transaction
711
+  (0.0ms) SAVEPOINT active_record_1
712
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00]]
713
+  (0.0ms) RELEASE SAVEPOINT active_record_1
714
+  (0.4ms) rollback transaction
715
+  (0.0ms) begin transaction
716
+  (0.0ms) SAVEPOINT active_record_1
717
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:22:44 UTC +00:00]]
718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
719
+  (0.2ms) rollback transaction
720
+  (0.0ms) begin transaction
721
+  (0.0ms) rollback transaction
722
+ Connecting to database specified by database.yml
723
+  (0.5ms) begin transaction
724
+  (0.1ms) SAVEPOINT active_record_1
725
+ SQL (5.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00]]
726
+  (0.1ms) RELEASE SAVEPOINT active_record_1
727
+  (0.1ms) SAVEPOINT active_record_1
728
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:23:03.143236' WHERE "simple_strings"."id" = 1
729
+  (0.0ms) RELEASE SAVEPOINT active_record_1
730
+  (1.8ms) rollback transaction
731
+  (0.1ms) begin transaction
732
+  (0.0ms) SAVEPOINT active_record_1
733
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00]]
734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
735
+  (0.4ms) rollback transaction
736
+  (0.1ms) begin transaction
737
+  (0.0ms) SAVEPOINT active_record_1
738
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00]]
739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
740
+  (0.3ms) rollback transaction
741
+  (0.1ms) begin transaction
742
+  (0.0ms) SAVEPOINT active_record_1
743
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00]]
744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
745
+  (0.2ms) rollback transaction
746
+  (0.0ms) begin transaction
747
+  (0.0ms) SAVEPOINT active_record_1
748
+ SQL (0.2ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00]]
749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
750
+  (0.2ms) rollback transaction
751
+  (0.0ms) begin transaction
752
+  (0.0ms) SAVEPOINT active_record_1
753
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00]]
754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
755
+  (0.3ms) rollback transaction
756
+  (0.1ms) begin transaction
757
+  (0.0ms) SAVEPOINT active_record_1
758
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:23:03 UTC +00:00]]
759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
760
+  (0.2ms) rollback transaction
761
+  (0.0ms) begin transaction
762
+  (0.0ms) rollback transaction
763
+ Connecting to database specified by database.yml
764
+  (0.5ms) begin transaction
765
+  (0.1ms) SAVEPOINT active_record_1
766
+ SQL (6.6ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00]]
767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
768
+  (0.1ms) SAVEPOINT active_record_1
769
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:26:37.707051' WHERE "simple_strings"."id" = 1
770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
771
+  (1.6ms) rollback transaction
772
+  (0.1ms) begin transaction
773
+  (0.0ms) SAVEPOINT active_record_1
774
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00]]
775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
776
+  (0.3ms) rollback transaction
777
+  (0.0ms) begin transaction
778
+  (0.0ms) SAVEPOINT active_record_1
779
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00]]
780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
781
+  (0.3ms) rollback transaction
782
+  (0.1ms) begin transaction
783
+  (0.0ms) SAVEPOINT active_record_1
784
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00]]
785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
786
+  (0.4ms) rollback transaction
787
+  (0.0ms) begin transaction
788
+  (0.0ms) SAVEPOINT active_record_1
789
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00]]
790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
791
+  (0.3ms) rollback transaction
792
+  (0.0ms) begin transaction
793
+  (0.0ms) SAVEPOINT active_record_1
794
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00]]
795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
796
+  (0.4ms) rollback transaction
797
+  (0.0ms) begin transaction
798
+  (0.0ms) SAVEPOINT active_record_1
799
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:26:37 UTC +00:00]]
800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
801
+  (0.3ms) rollback transaction
802
+  (0.0ms) begin transaction
803
+  (0.0ms) rollback transaction
804
+ Connecting to database specified by database.yml
805
+  (0.5ms) begin transaction
806
+  (0.0ms) SAVEPOINT active_record_1
807
+ SQL (5.7ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00]]
808
+  (0.1ms) RELEASE SAVEPOINT active_record_1
809
+  (0.1ms) SAVEPOINT active_record_1
810
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:28:05.632724' WHERE "simple_strings"."id" = 1
811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
812
+  (1.8ms) rollback transaction
813
+  (0.1ms) begin transaction
814
+  (0.1ms) SAVEPOINT active_record_1
815
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00]]
816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
817
+  (0.3ms) rollback transaction
818
+  (0.0ms) begin transaction
819
+  (0.0ms) SAVEPOINT active_record_1
820
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00]]
821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
822
+  (0.3ms) rollback transaction
823
+  (0.0ms) begin transaction
824
+  (0.0ms) SAVEPOINT active_record_1
825
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00]]
826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
827
+  (0.2ms) rollback transaction
828
+  (0.0ms) begin transaction
829
+  (0.0ms) SAVEPOINT active_record_1
830
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00]]
831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
832
+  (0.4ms) rollback transaction
833
+  (0.0ms) begin transaction
834
+  (0.0ms) SAVEPOINT active_record_1
835
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00]]
836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
837
+  (0.3ms) rollback transaction
838
+  (0.0ms) begin transaction
839
+  (0.0ms) SAVEPOINT active_record_1
840
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:28:05 UTC +00:00]]
841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
842
+  (0.3ms) rollback transaction
843
+  (0.0ms) begin transaction
844
+  (0.0ms) rollback transaction
845
+ Connecting to database specified by database.yml
846
+  (0.5ms) begin transaction
847
+  (0.0ms) SAVEPOINT active_record_1
848
+ SQL (4.8ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00]]
849
+  (0.1ms) RELEASE SAVEPOINT active_record_1
850
+  (0.1ms) SAVEPOINT active_record_1
851
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:29:53.791349' WHERE "simple_strings"."id" = 1
852
+  (0.1ms) RELEASE SAVEPOINT active_record_1
853
+  (1.8ms) rollback transaction
854
+  (0.1ms) begin transaction
855
+  (0.0ms) SAVEPOINT active_record_1
856
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00]]
857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
858
+  (0.3ms) rollback transaction
859
+  (0.0ms) begin transaction
860
+  (0.0ms) SAVEPOINT active_record_1
861
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00]]
862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
863
+  (0.2ms) rollback transaction
864
+  (0.0ms) begin transaction
865
+  (0.0ms) SAVEPOINT active_record_1
866
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00]]
867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
868
+  (0.2ms) rollback transaction
869
+  (0.1ms) begin transaction
870
+  (0.1ms) SAVEPOINT active_record_1
871
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00]]
872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
873
+  (0.4ms) rollback transaction
874
+  (0.0ms) begin transaction
875
+  (0.0ms) SAVEPOINT active_record_1
876
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00]]
877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
878
+  (0.3ms) rollback transaction
879
+  (0.0ms) begin transaction
880
+  (0.0ms) SAVEPOINT active_record_1
881
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:29:53 UTC +00:00]]
882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
883
+  (0.2ms) rollback transaction
884
+  (0.0ms) begin transaction
885
+  (0.0ms) rollback transaction
886
+ Connecting to database specified by database.yml
887
+  (0.5ms) begin transaction
888
+  (0.1ms) SAVEPOINT active_record_1
889
+ SQL (5.0ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00]]
890
+  (0.1ms) RELEASE SAVEPOINT active_record_1
891
+  (0.1ms) SAVEPOINT active_record_1
892
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:30:50.395966' WHERE "simple_strings"."id" = 1
893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
894
+  (1.8ms) rollback transaction
895
+  (0.1ms) begin transaction
896
+  (0.0ms) SAVEPOINT active_record_1
897
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00]]
898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
899
+  (0.3ms) rollback transaction
900
+  (0.1ms) begin transaction
901
+  (0.0ms) SAVEPOINT active_record_1
902
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00]]
903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
904
+  (0.2ms) rollback transaction
905
+  (0.0ms) begin transaction
906
+  (0.0ms) SAVEPOINT active_record_1
907
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00]]
908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
909
+  (0.2ms) rollback transaction
910
+  (0.0ms) begin transaction
911
+  (0.0ms) SAVEPOINT active_record_1
912
+ SQL (0.2ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00]]
913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
914
+  (0.4ms) rollback transaction
915
+  (0.0ms) begin transaction
916
+  (0.0ms) SAVEPOINT active_record_1
917
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00]]
918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
919
+  (0.3ms) rollback transaction
920
+  (0.0ms) begin transaction
921
+  (0.0ms) SAVEPOINT active_record_1
922
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:30:50 UTC +00:00]]
923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
924
+  (0.3ms) rollback transaction
925
+  (0.0ms) begin transaction
926
+  (0.0ms) rollback transaction
927
+ Connecting to database specified by database.yml
928
+  (0.5ms) begin transaction
929
+  (0.0ms) SAVEPOINT active_record_1
930
+ SQL (4.9ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00]]
931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
932
+  (0.1ms) SAVEPOINT active_record_1
933
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:32:12.366792' WHERE "simple_strings"."id" = 1
934
+  (0.1ms) RELEASE SAVEPOINT active_record_1
935
+  (1.8ms) rollback transaction
936
+  (0.1ms) begin transaction
937
+  (0.0ms) SAVEPOINT active_record_1
938
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00]]
939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
940
+  (0.3ms) rollback transaction
941
+  (0.1ms) begin transaction
942
+  (0.0ms) SAVEPOINT active_record_1
943
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00]]
944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
945
+  (0.3ms) rollback transaction
946
+  (0.1ms) begin transaction
947
+  (0.0ms) SAVEPOINT active_record_1
948
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00]]
949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
950
+  (0.3ms) rollback transaction
951
+  (0.0ms) begin transaction
952
+  (0.0ms) SAVEPOINT active_record_1
953
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00]]
954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
955
+  (0.4ms) rollback transaction
956
+  (0.0ms) begin transaction
957
+  (0.0ms) SAVEPOINT active_record_1
958
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00]]
959
+  (0.0ms) RELEASE SAVEPOINT active_record_1
960
+  (0.2ms) rollback transaction
961
+  (0.0ms) begin transaction
962
+  (0.0ms) SAVEPOINT active_record_1
963
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:32:12 UTC +00:00]]
964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
965
+  (0.2ms) rollback transaction
966
+  (0.0ms) begin transaction
967
+  (0.0ms) rollback transaction
968
+ Connecting to database specified by database.yml
969
+  (0.5ms) begin transaction
970
+  (0.1ms) SAVEPOINT active_record_1
971
+ SQL (5.9ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00]]
972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
973
+  (0.1ms) SAVEPOINT active_record_1
974
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:35:02.083935' WHERE "simple_strings"."id" = 1
975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
976
+  (1.8ms) rollback transaction
977
+  (0.1ms) begin transaction
978
+  (0.0ms) SAVEPOINT active_record_1
979
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00]]
980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
981
+  (0.4ms) rollback transaction
982
+  (0.0ms) begin transaction
983
+  (0.0ms) SAVEPOINT active_record_1
984
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00]]
985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
986
+  (0.3ms) rollback transaction
987
+  (0.0ms) begin transaction
988
+  (0.0ms) SAVEPOINT active_record_1
989
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00]]
990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
991
+  (0.3ms) rollback transaction
992
+  (0.1ms) begin transaction
993
+  (0.0ms) SAVEPOINT active_record_1
994
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00]]
995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
996
+  (0.3ms) rollback transaction
997
+  (0.0ms) begin transaction
998
+  (0.0ms) SAVEPOINT active_record_1
999
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00]]
1000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1001
+  (0.3ms) rollback transaction
1002
+  (0.0ms) begin transaction
1003
+  (0.0ms) SAVEPOINT active_record_1
1004
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:35:02 UTC +00:00]]
1005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1006
+  (0.2ms) rollback transaction
1007
+  (0.0ms) begin transaction
1008
+  (0.0ms) rollback transaction
1009
+ Connecting to database specified by database.yml
1010
+  (0.6ms) begin transaction
1011
+  (0.1ms) SAVEPOINT active_record_1
1012
+ SQL (9.7ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00]]
1013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1014
+  (0.1ms) SAVEPOINT active_record_1
1015
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 20:50:21.877805' WHERE "simple_strings"."id" = 1
1016
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1017
+  (1.6ms) rollback transaction
1018
+  (0.1ms) begin transaction
1019
+  (0.1ms) SAVEPOINT active_record_1
1020
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00]]
1021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1022
+  (0.4ms) rollback transaction
1023
+  (0.0ms) begin transaction
1024
+  (0.0ms) SAVEPOINT active_record_1
1025
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00]]
1026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1027
+  (0.3ms) rollback transaction
1028
+  (0.1ms) begin transaction
1029
+  (0.0ms) SAVEPOINT active_record_1
1030
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00]]
1031
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1032
+  (0.3ms) rollback transaction
1033
+  (0.1ms) begin transaction
1034
+  (0.0ms) SAVEPOINT active_record_1
1035
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00]]
1036
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1037
+  (0.5ms) rollback transaction
1038
+  (0.1ms) begin transaction
1039
+  (0.1ms) SAVEPOINT active_record_1
1040
+ SQL (1.0ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00]]
1041
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1042
+  (0.4ms) rollback transaction
1043
+  (0.0ms) begin transaction
1044
+  (0.0ms) SAVEPOINT active_record_1
1045
+ SQL (0.6ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 20:50:21 UTC +00:00]]
1046
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1047
+  (0.2ms) rollback transaction
1048
+  (0.0ms) begin transaction
1049
+  (0.1ms) rollback transaction
1050
+ Connecting to database specified by database.yml
1051
+ Connecting to database specified by database.yml
1052
+  (0.5ms) begin transaction
1053
+  (0.0ms) SAVEPOINT active_record_1
1054
+ SQL (6.0ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00]]
1055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1056
+  (0.1ms) SAVEPOINT active_record_1
1057
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-25 22:34:22.131025' WHERE "simple_strings"."id" = 1
1058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1059
+  (1.8ms) rollback transaction
1060
+  (0.1ms) begin transaction
1061
+  (0.0ms) SAVEPOINT active_record_1
1062
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00]]
1063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1064
+  (0.3ms) rollback transaction
1065
+  (0.0ms) begin transaction
1066
+  (0.0ms) SAVEPOINT active_record_1
1067
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00]]
1068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1069
+  (0.3ms) rollback transaction
1070
+  (0.0ms) begin transaction
1071
+  (0.0ms) SAVEPOINT active_record_1
1072
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00]]
1073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1074
+  (0.3ms) rollback transaction
1075
+  (0.0ms) begin transaction
1076
+  (0.0ms) SAVEPOINT active_record_1
1077
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00]]
1078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1079
+  (0.3ms) rollback transaction
1080
+  (0.0ms) begin transaction
1081
+  (0.0ms) SAVEPOINT active_record_1
1082
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00]]
1083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1084
+  (0.3ms) rollback transaction
1085
+  (0.1ms) begin transaction
1086
+  (0.0ms) SAVEPOINT active_record_1
1087
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00]]
1088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1089
+  (0.3ms) rollback transaction
1090
+  (0.0ms) begin transaction
1091
+  (0.0ms) SAVEPOINT active_record_1
1092
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 25 Jan 2013 22:34:22 UTC +00:00]]
1093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1094
+  (0.3ms) rollback transaction
1095
+  (0.0ms) begin transaction
1096
+  (0.0ms) rollback transaction
1097
+ Connecting to database specified by database.yml
1098
+ Connecting to database specified by database.yml
1099
+ Connecting to database specified by database.yml
1100
+ Connecting to database specified by database.yml
1101
+  (11.5ms) begin transaction
1102
+  (0.1ms) SAVEPOINT active_record_1
1103
+ SQL (12.7ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00], ["some_string", nil], ["updated_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00]]
1104
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1105
+  (0.1ms) SAVEPOINT active_record_1
1106
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-30 16:14:30.146107' WHERE "simple_strings"."id" = 1
1107
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1108
+  (0.4ms) rollback transaction
1109
+  (0.1ms) begin transaction
1110
+  (0.0ms) SAVEPOINT active_record_1
1111
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00], ["some_string", nil], ["updated_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00]]
1112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1113
+  (0.3ms) rollback transaction
1114
+  (0.1ms) begin transaction
1115
+  (0.0ms) SAVEPOINT active_record_1
1116
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00], ["some_string", nil], ["updated_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00]]
1117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1118
+  (0.3ms) rollback transaction
1119
+  (0.1ms) begin transaction
1120
+  (0.1ms) SAVEPOINT active_record_1
1121
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00], ["some_string", nil], ["updated_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00]]
1122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1123
+  (0.3ms) rollback transaction
1124
+  (0.0ms) begin transaction
1125
+  (0.0ms) SAVEPOINT active_record_1
1126
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00], ["some_string", nil], ["updated_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00]]
1127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1128
+  (0.3ms) rollback transaction
1129
+  (0.1ms) begin transaction
1130
+  (0.0ms) SAVEPOINT active_record_1
1131
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00], ["some_string", nil], ["updated_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00]]
1132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1133
+  (0.3ms) rollback transaction
1134
+  (0.1ms) begin transaction
1135
+  (0.0ms) SAVEPOINT active_record_1
1136
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00], ["some_string", nil], ["updated_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00]]
1137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1138
+  (0.3ms) rollback transaction
1139
+  (0.0ms) begin transaction
1140
+  (0.0ms) SAVEPOINT active_record_1
1141
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00], ["some_string", nil], ["updated_at", Wed, 30 Jan 2013 16:14:30 UTC +00:00]]
1142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1143
+  (0.3ms) rollback transaction
1144
+  (0.1ms) begin transaction
1145
+  (0.0ms) rollback transaction
1146
+ Connecting to database specified by database.yml
1147
+ Connecting to database specified by database.yml
1148
+  (0.5ms) begin transaction
1149
+  (0.1ms) SAVEPOINT active_record_1
1150
+ SQL (10.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1151
+  (0.5ms) RELEASE SAVEPOINT active_record_1
1152
+  (0.1ms) SAVEPOINT active_record_1
1153
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-31 22:55:18.664397' WHERE "simple_strings"."id" = 1
1154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1155
+  (0.5ms) rollback transaction
1156
+  (0.1ms) begin transaction
1157
+  (0.0ms) SAVEPOINT active_record_1
1158
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1160
+  (0.3ms) rollback transaction
1161
+  (0.1ms) begin transaction
1162
+  (0.0ms) SAVEPOINT active_record_1
1163
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1164
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1165
+  (0.3ms) rollback transaction
1166
+  (0.0ms) begin transaction
1167
+  (0.0ms) SAVEPOINT active_record_1
1168
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1170
+  (0.3ms) rollback transaction
1171
+  (0.1ms) begin transaction
1172
+  (0.0ms) SAVEPOINT active_record_1
1173
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1175
+  (0.4ms) rollback transaction
1176
+  (0.1ms) begin transaction
1177
+  (0.0ms) SAVEPOINT active_record_1
1178
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1179
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1180
+  (0.4ms) rollback transaction
1181
+  (0.1ms) begin transaction
1182
+  (0.0ms) SAVEPOINT active_record_1
1183
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1185
+  (0.3ms) rollback transaction
1186
+  (0.1ms) begin transaction
1187
+  (0.0ms) SAVEPOINT active_record_1
1188
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1190
+  (0.3ms) rollback transaction
1191
+  (0.0ms) begin transaction
1192
+  (23.6ms) SAVEPOINT active_record_1
1193
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 22:55:18 UTC +00:00]]
1194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1195
+  (0.3ms) rollback transaction
1196
+  (0.1ms) begin transaction
1197
+  (0.0ms) rollback transaction
1198
+ Connecting to database specified by database.yml
1199
+  (0.5ms) begin transaction
1200
+  (0.0ms) SAVEPOINT active_record_1
1201
+ SQL (5.1ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1202
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1203
+  (0.1ms) SAVEPOINT active_record_1
1204
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-31 23:04:46.044136' WHERE "simple_strings"."id" = 1
1205
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1206
+  (1.6ms) rollback transaction
1207
+  (0.1ms) begin transaction
1208
+  (0.1ms) SAVEPOINT active_record_1
1209
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1211
+  (0.0ms) SAVEPOINT active_record_1
1212
+  (0.3ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-31 23:04:46.053360' WHERE "simple_strings"."id" = 1
1213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1214
+  (0.3ms) rollback transaction
1215
+  (0.1ms) begin transaction
1216
+  (0.0ms) SAVEPOINT active_record_1
1217
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1219
+  (0.3ms) rollback transaction
1220
+  (0.0ms) begin transaction
1221
+  (0.1ms) SAVEPOINT active_record_1
1222
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1224
+  (0.3ms) rollback transaction
1225
+  (0.1ms) begin transaction
1226
+  (0.0ms) SAVEPOINT active_record_1
1227
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1228
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1229
+  (0.3ms) rollback transaction
1230
+  (0.0ms) begin transaction
1231
+  (0.0ms) SAVEPOINT active_record_1
1232
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1234
+  (0.3ms) rollback transaction
1235
+  (0.0ms) begin transaction
1236
+  (0.0ms) SAVEPOINT active_record_1
1237
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1239
+  (0.4ms) rollback transaction
1240
+  (0.1ms) begin transaction
1241
+  (0.0ms) SAVEPOINT active_record_1
1242
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1244
+  (0.4ms) rollback transaction
1245
+  (0.1ms) begin transaction
1246
+  (0.0ms) SAVEPOINT active_record_1
1247
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:04:46 UTC +00:00]]
1248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1249
+  (0.3ms) rollback transaction
1250
+  (0.1ms) begin transaction
1251
+  (0.0ms) rollback transaction
1252
+ Connecting to database specified by database.yml
1253
+  (0.5ms) begin transaction
1254
+  (0.1ms) SAVEPOINT active_record_1
1255
+ SQL (5.0ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1257
+  (0.1ms) SAVEPOINT active_record_1
1258
+  (3.3ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-31 23:08:27.354368' WHERE "simple_strings"."id" = 1
1259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1260
+  (2.5ms) rollback transaction
1261
+  (0.1ms) begin transaction
1262
+  (0.1ms) SAVEPOINT active_record_1
1263
+ SQL (4.0ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1265
+  (0.1ms) SAVEPOINT active_record_1
1266
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-31 23:08:27.370359' WHERE "simple_strings"."id" = 1
1267
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1268
+  (0.3ms) rollback transaction
1269
+  (0.1ms) begin transaction
1270
+  (0.0ms) SAVEPOINT active_record_1
1271
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1273
+  (0.3ms) rollback transaction
1274
+  (0.1ms) begin transaction
1275
+  (0.0ms) SAVEPOINT active_record_1
1276
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1278
+  (0.3ms) rollback transaction
1279
+  (0.0ms) begin transaction
1280
+  (0.0ms) SAVEPOINT active_record_1
1281
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1283
+  (0.3ms) rollback transaction
1284
+  (0.0ms) begin transaction
1285
+  (0.0ms) SAVEPOINT active_record_1
1286
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1288
+  (0.3ms) rollback transaction
1289
+  (0.0ms) begin transaction
1290
+  (0.0ms) SAVEPOINT active_record_1
1291
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1293
+  (0.5ms) rollback transaction
1294
+  (0.0ms) begin transaction
1295
+  (0.0ms) SAVEPOINT active_record_1
1296
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1298
+  (0.3ms) rollback transaction
1299
+  (0.1ms) begin transaction
1300
+  (0.0ms) SAVEPOINT active_record_1
1301
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:08:27 UTC +00:00]]
1302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1303
+  (0.3ms) rollback transaction
1304
+  (0.1ms) begin transaction
1305
+  (0.0ms) rollback transaction
1306
+ Connecting to database specified by database.yml
1307
+  (0.5ms) begin transaction
1308
+  (0.0ms) SAVEPOINT active_record_1
1309
+ SQL (7.0ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1311
+  (0.1ms) SAVEPOINT active_record_1
1312
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-31 23:09:52.798824' WHERE "simple_strings"."id" = 1
1313
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1314
+  (0.5ms) rollback transaction
1315
+  (0.1ms) begin transaction
1316
+  (0.1ms) SAVEPOINT active_record_1
1317
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1318
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1319
+  (0.0ms) SAVEPOINT active_record_1
1320
+  (0.3ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-01-31 23:09:52.807528' WHERE "simple_strings"."id" = 1
1321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1322
+  (0.4ms) rollback transaction
1323
+  (0.1ms) begin transaction
1324
+  (0.0ms) SAVEPOINT active_record_1
1325
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1327
+  (0.3ms) rollback transaction
1328
+  (0.0ms) begin transaction
1329
+  (0.0ms) SAVEPOINT active_record_1
1330
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1332
+  (0.3ms) rollback transaction
1333
+  (0.0ms) begin transaction
1334
+  (0.0ms) SAVEPOINT active_record_1
1335
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1337
+  (0.3ms) rollback transaction
1338
+  (0.0ms) begin transaction
1339
+  (0.0ms) SAVEPOINT active_record_1
1340
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1342
+  (0.4ms) rollback transaction
1343
+  (0.0ms) begin transaction
1344
+  (0.0ms) SAVEPOINT active_record_1
1345
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1347
+  (0.4ms) rollback transaction
1348
+  (0.1ms) begin transaction
1349
+  (0.0ms) SAVEPOINT active_record_1
1350
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1352
+  (0.3ms) rollback transaction
1353
+  (0.1ms) begin transaction
1354
+  (0.0ms) SAVEPOINT active_record_1
1355
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00], ["some_string", nil], ["updated_at", Thu, 31 Jan 2013 23:09:52 UTC +00:00]]
1356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1357
+  (0.3ms) rollback transaction
1358
+  (0.1ms) begin transaction
1359
+  (0.0ms) rollback transaction
1360
+ Connecting to database specified by database.yml
1361
+  (14.2ms) begin transaction
1362
+  (0.0ms) SAVEPOINT active_record_1
1363
+ SQL (12.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00]]
1364
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1365
+  (0.1ms) SAVEPOINT active_record_1
1366
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-02-01 20:08:23.937180' WHERE "simple_strings"."id" = 1
1367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1368
+  (0.4ms) rollback transaction
1369
+  (0.0ms) begin transaction
1370
+  (0.0ms) SAVEPOINT active_record_1
1371
+ SQL (0.8ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00]]
1372
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1373
+  (0.1ms) SAVEPOINT active_record_1
1374
+  (0.3ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-02-01 20:08:23.947937' WHERE "simple_strings"."id" = 1
1375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1376
+  (0.3ms) rollback transaction
1377
+  (0.0ms) begin transaction
1378
+  (0.0ms) SAVEPOINT active_record_1
1379
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00]]
1380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1381
+  (0.3ms) rollback transaction
1382
+  (0.0ms) begin transaction
1383
+  (0.0ms) SAVEPOINT active_record_1
1384
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00]]
1385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1386
+  (0.5ms) rollback transaction
1387
+  (0.1ms) begin transaction
1388
+  (0.1ms) SAVEPOINT active_record_1
1389
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00]]
1390
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1391
+  (0.3ms) rollback transaction
1392
+  (0.1ms) begin transaction
1393
+  (0.1ms) SAVEPOINT active_record_1
1394
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00]]
1395
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1396
+  (0.3ms) rollback transaction
1397
+  (0.1ms) begin transaction
1398
+  (0.1ms) SAVEPOINT active_record_1
1399
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00]]
1400
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1401
+  (0.3ms) rollback transaction
1402
+  (0.0ms) begin transaction
1403
+  (0.0ms) SAVEPOINT active_record_1
1404
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:23 UTC +00:00]]
1405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1406
+  (0.4ms) rollback transaction
1407
+  (0.0ms) begin transaction
1408
+  (0.0ms) SAVEPOINT active_record_1
1409
+ SQL (1.2ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:08:24 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:08:24 UTC +00:00]]
1410
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1411
+  (0.3ms) rollback transaction
1412
+  (0.1ms) begin transaction
1413
+  (0.0ms) rollback transaction
1414
+ Connecting to database specified by database.yml
1415
+  (0.5ms) begin transaction
1416
+  (0.0ms) SAVEPOINT active_record_1
1417
+ SQL (5.7ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1419
+  (0.1ms) SAVEPOINT active_record_1
1420
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-02-01 20:09:53.519031' WHERE "simple_strings"."id" = 1
1421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1422
+  (1.6ms) rollback transaction
1423
+  (0.1ms) begin transaction
1424
+  (0.1ms) SAVEPOINT active_record_1
1425
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1427
+  (0.0ms) SAVEPOINT active_record_1
1428
+  (0.3ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-02-01 20:09:53.529619' WHERE "simple_strings"."id" = 1
1429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1430
+  (0.4ms) rollback transaction
1431
+  (0.1ms) begin transaction
1432
+  (0.0ms) SAVEPOINT active_record_1
1433
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1434
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1435
+  (0.3ms) rollback transaction
1436
+  (0.0ms) begin transaction
1437
+  (0.0ms) SAVEPOINT active_record_1
1438
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1439
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1440
+  (0.3ms) rollback transaction
1441
+  (0.1ms) begin transaction
1442
+  (0.0ms) SAVEPOINT active_record_1
1443
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1444
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1445
+  (0.3ms) rollback transaction
1446
+  (0.1ms) begin transaction
1447
+  (0.1ms) SAVEPOINT active_record_1
1448
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1450
+  (0.4ms) rollback transaction
1451
+  (0.1ms) begin transaction
1452
+  (0.1ms) SAVEPOINT active_record_1
1453
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1455
+  (0.3ms) rollback transaction
1456
+  (0.1ms) begin transaction
1457
+  (0.0ms) SAVEPOINT active_record_1
1458
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1460
+  (0.3ms) rollback transaction
1461
+  (0.1ms) begin transaction
1462
+  (0.0ms) SAVEPOINT active_record_1
1463
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:09:53 UTC +00:00]]
1464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1465
+  (0.3ms) rollback transaction
1466
+  (0.0ms) begin transaction
1467
+  (0.0ms) rollback transaction
1468
+ Connecting to database specified by database.yml
1469
+  (11.6ms) begin transaction
1470
+  (0.1ms) SAVEPOINT active_record_1
1471
+ SQL (36.1ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1472
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1473
+  (0.1ms) SAVEPOINT active_record_1
1474
+  (1.2ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-02-01 20:12:40.104886' WHERE "simple_strings"."id" = 1
1475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1476
+  (0.4ms) rollback transaction
1477
+  (0.1ms) begin transaction
1478
+  (0.1ms) SAVEPOINT active_record_1
1479
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1481
+  (0.1ms) SAVEPOINT active_record_1
1482
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-02-01 20:12:40.114206' WHERE "simple_strings"."id" = 1
1483
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1484
+  (0.5ms) rollback transaction
1485
+  (0.0ms) begin transaction
1486
+  (0.0ms) SAVEPOINT active_record_1
1487
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1489
+  (0.3ms) rollback transaction
1490
+  (0.1ms) begin transaction
1491
+  (0.0ms) SAVEPOINT active_record_1
1492
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1493
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1494
+  (0.4ms) rollback transaction
1495
+  (0.1ms) begin transaction
1496
+  (0.0ms) SAVEPOINT active_record_1
1497
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1499
+  (0.3ms) rollback transaction
1500
+  (0.1ms) begin transaction
1501
+  (0.0ms) SAVEPOINT active_record_1
1502
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1504
+  (0.3ms) rollback transaction
1505
+  (0.1ms) begin transaction
1506
+  (0.0ms) SAVEPOINT active_record_1
1507
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1508
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1509
+  (0.3ms) rollback transaction
1510
+  (0.1ms) begin transaction
1511
+  (0.1ms) SAVEPOINT active_record_1
1512
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1514
+  (0.4ms) rollback transaction
1515
+  (0.0ms) begin transaction
1516
+  (0.1ms) SAVEPOINT active_record_1
1517
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:12:40 UTC +00:00]]
1518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1519
+  (0.6ms) rollback transaction
1520
+  (0.0ms) begin transaction
1521
+  (0.0ms) rollback transaction
1522
+ Connecting to database specified by database.yml
1523
+  (0.6ms) begin transaction
1524
+  (0.1ms) SAVEPOINT active_record_1
1525
+ SQL (36.7ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1527
+  (0.1ms) SAVEPOINT active_record_1
1528
+  (0.5ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-02-01 20:13:13.453529' WHERE "simple_strings"."id" = 1
1529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1530
+  (0.5ms) rollback transaction
1531
+  (0.1ms) begin transaction
1532
+  (0.1ms) SAVEPOINT active_record_1
1533
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1535
+  (0.1ms) SAVEPOINT active_record_1
1536
+  (0.4ms) UPDATE "simple_strings" SET "some_string" = 'foobar', "updated_at" = '2013-02-01 20:13:13.462555' WHERE "simple_strings"."id" = 1
1537
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1538
+  (0.4ms) rollback transaction
1539
+  (0.1ms) begin transaction
1540
+  (0.0ms) SAVEPOINT active_record_1
1541
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1543
+  (0.3ms) rollback transaction
1544
+  (0.1ms) begin transaction
1545
+  (0.1ms) SAVEPOINT active_record_1
1546
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1547
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1548
+  (0.4ms) rollback transaction
1549
+  (0.1ms) begin transaction
1550
+  (0.0ms) SAVEPOINT active_record_1
1551
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1553
+  (0.6ms) rollback transaction
1554
+  (0.1ms) begin transaction
1555
+  (0.1ms) SAVEPOINT active_record_1
1556
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1557
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1558
+  (0.4ms) rollback transaction
1559
+  (0.1ms) begin transaction
1560
+  (0.0ms) SAVEPOINT active_record_1
1561
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1563
+  (0.4ms) rollback transaction
1564
+  (0.1ms) begin transaction
1565
+  (0.1ms) SAVEPOINT active_record_1
1566
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1568
+  (0.4ms) rollback transaction
1569
+  (0.1ms) begin transaction
1570
+  (0.1ms) SAVEPOINT active_record_1
1571
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "some_string", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00], ["some_string", nil], ["updated_at", Fri, 01 Feb 2013 20:13:13 UTC +00:00]]
1572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1573
+  (0.3ms) rollback transaction
1574
+  (0.1ms) begin transaction
1575
+  (0.0ms) rollback transaction