attr_initializable 0.0.2 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. data/README.md +4 -0
  2. data/Rakefile +0 -8
  3. data/lib/attr_initializable.rb +4 -3
  4. data/lib/attr_initializable/version.rb +1 -1
  5. data/test/attr_initializable_test.rb +27 -0
  6. data/test/test_helper.rb +4 -18
  7. data/test/test_utils.rb +11 -16
  8. metadata +11 -147
  9. data/test/dummy-rails3/Rakefile +0 -7
  10. data/test/dummy-rails3/app/assets/javascripts/application.js +0 -15
  11. data/test/dummy-rails3/app/assets/stylesheets/application.css +0 -13
  12. data/test/dummy-rails3/app/controllers/application_controller.rb +0 -3
  13. data/test/dummy-rails3/app/helpers/application_helper.rb +0 -2
  14. data/test/dummy-rails3/app/models/manufacturer.rb +0 -3
  15. data/test/dummy-rails3/app/models/widget.rb +0 -7
  16. data/test/dummy-rails3/app/views/layouts/application.html.erb +0 -14
  17. data/test/dummy-rails3/config.ru +0 -4
  18. data/test/dummy-rails3/config/application.rb +0 -59
  19. data/test/dummy-rails3/config/boot.rb +0 -10
  20. data/test/dummy-rails3/config/database.yml +0 -10
  21. data/test/dummy-rails3/config/environment.rb +0 -5
  22. data/test/dummy-rails3/config/environments/development.rb +0 -37
  23. data/test/dummy-rails3/config/environments/production.rb +0 -67
  24. data/test/dummy-rails3/config/environments/test.rb +0 -37
  25. data/test/dummy-rails3/config/initializers/backtrace_silencers.rb +0 -7
  26. data/test/dummy-rails3/config/initializers/inflections.rb +0 -15
  27. data/test/dummy-rails3/config/initializers/mime_types.rb +0 -5
  28. data/test/dummy-rails3/config/initializers/secret_token.rb +0 -7
  29. data/test/dummy-rails3/config/initializers/session_store.rb +0 -8
  30. data/test/dummy-rails3/config/initializers/wrap_parameters.rb +0 -14
  31. data/test/dummy-rails3/config/locales/en.yml +0 -5
  32. data/test/dummy-rails3/config/routes.rb +0 -58
  33. data/test/dummy-rails3/db/migrate/20131027192625_create_manufacturers.rb +0 -9
  34. data/test/dummy-rails3/db/migrate/20131027192834_create_widgets.rb +0 -11
  35. data/test/dummy-rails3/db/schema.rb +0 -28
  36. data/test/dummy-rails3/db/test.sqlite3 +0 -0
  37. data/test/dummy-rails3/log/test.log +0 -1169
  38. data/test/dummy-rails3/public/404.html +0 -26
  39. data/test/dummy-rails3/public/422.html +0 -26
  40. data/test/dummy-rails3/public/500.html +0 -25
  41. data/test/dummy-rails3/public/favicon.ico +0 -0
  42. data/test/dummy-rails3/script/rails +0 -6
  43. data/test/dummy-rails4/Rakefile +0 -6
  44. data/test/dummy-rails4/app/assets/javascripts/application.js +0 -16
  45. data/test/dummy-rails4/app/assets/stylesheets/application.css +0 -13
  46. data/test/dummy-rails4/app/controllers/application_controller.rb +0 -5
  47. data/test/dummy-rails4/app/helpers/application_helper.rb +0 -2
  48. data/test/dummy-rails4/app/models/manufacturer.rb +0 -3
  49. data/test/dummy-rails4/app/models/widget.rb +0 -7
  50. data/test/dummy-rails4/app/views/layouts/application.html.erb +0 -14
  51. data/test/dummy-rails4/bin/bundle +0 -3
  52. data/test/dummy-rails4/bin/rails +0 -4
  53. data/test/dummy-rails4/bin/rake +0 -4
  54. data/test/dummy-rails4/config.ru +0 -4
  55. data/test/dummy-rails4/config/application.rb +0 -27
  56. data/test/dummy-rails4/config/boot.rb +0 -4
  57. data/test/dummy-rails4/config/database.yml +0 -25
  58. data/test/dummy-rails4/config/environment.rb +0 -5
  59. data/test/dummy-rails4/config/environments/development.rb +0 -29
  60. data/test/dummy-rails4/config/environments/production.rb +0 -80
  61. data/test/dummy-rails4/config/environments/test.rb +0 -36
  62. data/test/dummy-rails4/config/initializers/backtrace_silencers.rb +0 -7
  63. data/test/dummy-rails4/config/initializers/filter_parameter_logging.rb +0 -4
  64. data/test/dummy-rails4/config/initializers/inflections.rb +0 -16
  65. data/test/dummy-rails4/config/initializers/mime_types.rb +0 -5
  66. data/test/dummy-rails4/config/initializers/secret_token.rb +0 -12
  67. data/test/dummy-rails4/config/initializers/session_store.rb +0 -3
  68. data/test/dummy-rails4/config/initializers/wrap_parameters.rb +0 -14
  69. data/test/dummy-rails4/config/locales/en.yml +0 -23
  70. data/test/dummy-rails4/config/routes.rb +0 -56
  71. data/test/dummy-rails4/db/migrate/20131027192625_create_manufacturers.rb +0 -9
  72. data/test/dummy-rails4/db/migrate/20131027192834_create_widgets.rb +0 -11
  73. data/test/dummy-rails4/db/schema.rb +0 -28
  74. data/test/dummy-rails4/db/seeds.rb +0 -7
  75. data/test/dummy-rails4/public/404.html +0 -58
  76. data/test/dummy-rails4/public/422.html +0 -58
  77. data/test/dummy-rails4/public/500.html +0 -57
  78. data/test/dummy-rails4/public/favicon.ico +0 -0
  79. data/test/dummy-rails4/public/robots.txt +0 -5
@@ -1,59 +0,0 @@
1
- require File.expand_path('../boot', __FILE__)
2
-
3
- require 'rails/all'
4
-
5
- Bundler.require(*Rails.groups)
6
- require "attr_initializable"
7
-
8
- module Dummy
9
- class Application < Rails::Application
10
- # Settings in config/environments/* take precedence over those specified here.
11
- # Application configuration should go into files in config/initializers
12
- # -- all .rb files in that directory are automatically loaded.
13
-
14
- # Custom directories with classes and modules you want to be autoloadable.
15
- # config.autoload_paths += %W(#{config.root}/extras)
16
-
17
- # Only load the plugins named here, in the order given (default is alphabetical).
18
- # :all can be used as a placeholder for all plugins not explicitly named.
19
- # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
-
21
- # Activate observers that should always be running.
22
- # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
-
24
- # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
- # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
- # config.time_zone = 'Central Time (US & Canada)'
27
-
28
- # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
- # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
- # config.i18n.default_locale = :de
31
-
32
- # Configure the default encoding used in templates for Ruby 1.9.
33
- config.encoding = "utf-8"
34
-
35
- # Configure sensitive parameters which will be filtered from the log file.
36
- config.filter_parameters += [:password]
37
-
38
- # Enable escaping HTML in JSON.
39
- config.active_support.escape_html_entities_in_json = true
40
-
41
- # Use SQL instead of Active Record's schema dumper when creating the database.
42
- # This is necessary if your schema can't be completely dumped by the schema dumper,
43
- # like if you have constraints or database-specific column types
44
- # config.active_record.schema_format = :sql
45
-
46
- # Enforce whitelist mode for mass assignment.
47
- # This will create an empty whitelist of attributes available for mass-assignment for all models
48
- # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
- # parameters by using an attr_accessible or attr_protected declaration.
50
- config.active_record.whitelist_attributes = true
51
-
52
- # Enable the asset pipeline
53
- config.assets.enabled = true
54
-
55
- # Version of your assets, change this if you want to expire all your assets
56
- config.assets.version = '1.0'
57
- end
58
- end
59
-
@@ -1,10 +0,0 @@
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__)
@@ -1,10 +0,0 @@
1
- default: &default
2
- adapter: sqlite3
3
- database: db/<%= Rails.env %>.sqlite3
4
- pool: 5
5
- timeout: 5000
6
- host: localhost
7
-
8
- test:
9
- <<: *default
10
-
@@ -1,5 +0,0 @@
1
- # Load the rails application
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the rails application
5
- Dummy::Application.initialize!
@@ -1,37 +0,0 @@
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
@@ -1,67 +0,0 @@
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
@@ -1,37 +0,0 @@
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
@@ -1,7 +0,0 @@
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!
@@ -1,15 +0,0 @@
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
@@ -1,5 +0,0 @@
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
@@ -1,7 +0,0 @@
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 = '68d2958ae859e1d43454dd61148bd258900905d85d56b409347f5486cc8dbdc282b5fccb8b357c981c5ac7b03358e7747bd3aba7d09fc550fd6cddf64df1c0ee'
@@ -1,8 +0,0 @@
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
@@ -1,14 +0,0 @@
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
@@ -1,5 +0,0 @@
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"
@@ -1,58 +0,0 @@
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
@@ -1,9 +0,0 @@
1
- class CreateManufacturers < ActiveRecord::Migration
2
- def change
3
- create_table :manufacturers do |t|
4
-
5
- t.timestamps
6
- end
7
- end
8
- end
9
-
@@ -1,11 +0,0 @@
1
- class CreateWidgets < ActiveRecord::Migration
2
- def change
3
- create_table :widgets do |t|
4
- t.belongs_to :manufacturer
5
- t.string :name
6
-
7
- t.timestamps
8
- end
9
- end
10
- end
11
-
@@ -1,28 +0,0 @@
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 => 20131027192834) do
15
-
16
- create_table "manufacturers", :force => true do |t|
17
- t.datetime "created_at", :null => false
18
- t.datetime "updated_at", :null => false
19
- end
20
-
21
- create_table "widgets", :force => true do |t|
22
- t.integer "manufacturer_id"
23
- t.string "name"
24
- t.datetime "created_at", :null => false
25
- t.datetime "updated_at", :null => false
26
- end
27
-
28
- end
Binary file
@@ -1,1169 +0,0 @@
1
- Connecting to database specified by database.yml
2
-  (26.8ms) select sqlite_version(*)
3
-  (156.2ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4
-  (164.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5
-  (188.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6
-  (155.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
-  (0.1ms) SELECT version FROM "schema_migrations"
8
-  (165.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
9
-  (155.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
10
-  (24.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
- Connecting to database specified by database.yml
12
-  (0.6ms) begin transaction
13
-  (0.1ms) rollback transaction
14
-  (0.1ms) begin transaction
15
-  (0.0ms) rollback transaction
16
-  (0.0ms) begin transaction
17
-  (0.0ms) rollback transaction
18
-  (0.0ms) begin transaction
19
-  (0.0ms) rollback transaction
20
- Connecting to database specified by database.yml
21
-  (26.3ms) select sqlite_version(*)
22
-  (139.4ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
23
-  (164.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
24
-  (188.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
25
-  (144.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26
-  (0.1ms) SELECT version FROM "schema_migrations"
27
-  (165.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
28
-  (166.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
29
-  (3.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
30
- Connecting to database specified by database.yml
31
-  (0.5ms) begin transaction
32
-  (0.1ms) SAVEPOINT active_record_1
33
- SQL (49.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00]]
34
-  (0.1ms) RELEASE SAVEPOINT active_record_1
35
- Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
36
-  (0.2ms) rollback transaction
37
-  (0.1ms) begin transaction
38
-  (0.0ms) SAVEPOINT active_record_1
39
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00]]
40
-  (0.0ms) RELEASE SAVEPOINT active_record_1
41
-  (0.0ms) SAVEPOINT active_record_1
42
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00]]
43
-  (0.1ms) RELEASE SAVEPOINT active_record_1
44
-  (0.0ms) SAVEPOINT active_record_1
45
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00]]
46
-  (0.1ms) RELEASE SAVEPOINT active_record_1
47
-  (0.0ms) SAVEPOINT active_record_1
48
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
49
-  (0.3ms) rollback transaction
50
-  (0.1ms) begin transaction
51
-  (0.1ms) SAVEPOINT active_record_1
52
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00]]
53
-  (0.1ms) RELEASE SAVEPOINT active_record_1
54
-  (0.1ms) rollback transaction
55
-  (0.0ms) begin transaction
56
-  (0.0ms) SAVEPOINT active_record_1
57
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00]]
58
-  (0.0ms) RELEASE SAVEPOINT active_record_1
59
-  (0.0ms) SAVEPOINT active_record_1
60
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00]]
61
-  (0.1ms) RELEASE SAVEPOINT active_record_1
62
-  (0.1ms) SAVEPOINT active_record_1
63
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:12 UTC +00:00]]
64
-  (0.0ms) RELEASE SAVEPOINT active_record_1
65
-  (0.0ms) SAVEPOINT active_record_1
66
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
67
-  (0.2ms) rollback transaction
68
- Connecting to database specified by database.yml
69
-  (26.2ms) select sqlite_version(*)
70
-  (179.9ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
71
-  (186.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
72
-  (155.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
73
-  (133.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
74
-  (0.1ms) SELECT version FROM "schema_migrations"
75
-  (154.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
76
-  (133.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
77
-  (3.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
78
- Connecting to database specified by database.yml
79
-  (0.6ms) begin transaction
80
-  (0.1ms) SAVEPOINT active_record_1
81
- SQL (10.1ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00]]
82
-  (0.1ms) RELEASE SAVEPOINT active_record_1
83
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
84
-  (0.3ms) rollback transaction
85
-  (0.1ms) begin transaction
86
-  (0.1ms) SAVEPOINT active_record_1
87
- SQL (1.0ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00]]
88
-  (0.1ms) RELEASE SAVEPOINT active_record_1
89
-  (0.1ms) SAVEPOINT active_record_1
90
- SQL (0.8ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00]]
91
-  (0.1ms) RELEASE SAVEPOINT active_record_1
92
-  (0.1ms) SAVEPOINT active_record_1
93
- SQL (0.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00]]
94
-  (0.1ms) RELEASE SAVEPOINT active_record_1
95
-  (0.1ms) SAVEPOINT active_record_1
96
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
97
-  (0.3ms) rollback transaction
98
-  (0.1ms) begin transaction
99
-  (0.1ms) SAVEPOINT active_record_1
100
- SQL (0.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00]]
101
-  (0.1ms) RELEASE SAVEPOINT active_record_1
102
-  (0.2ms) rollback transaction
103
-  (0.1ms) begin transaction
104
-  (0.1ms) SAVEPOINT active_record_1
105
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00]]
106
-  (0.1ms) RELEASE SAVEPOINT active_record_1
107
-  (0.1ms) SAVEPOINT active_record_1
108
- SQL (0.8ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00]]
109
-  (0.1ms) RELEASE SAVEPOINT active_record_1
110
-  (0.1ms) SAVEPOINT active_record_1
111
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:38:53 UTC +00:00]]
112
-  (0.1ms) RELEASE SAVEPOINT active_record_1
113
-  (0.1ms) SAVEPOINT active_record_1
114
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
115
-  (0.2ms) rollback transaction
116
- Connecting to database specified by database.yml
117
-  (26.2ms) select sqlite_version(*)
118
-  (202.6ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
119
-  (198.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
120
-  (166.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
121
-  (132.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
122
-  (0.1ms) SELECT version FROM "schema_migrations"
123
-  (165.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
124
-  (144.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
125
-  (3.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
126
- Connecting to database specified by database.yml
127
-  (0.5ms) begin transaction
128
-  (0.1ms) SAVEPOINT active_record_1
129
- SQL (7.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00]]
130
-  (0.1ms) RELEASE SAVEPOINT active_record_1
131
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
132
-  (0.2ms) rollback transaction
133
-  (0.1ms) begin transaction
134
-  (0.0ms) SAVEPOINT active_record_1
135
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00]]
136
-  (0.0ms) RELEASE SAVEPOINT active_record_1
137
-  (0.0ms) SAVEPOINT active_record_1
138
- SQL (0.7ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00]]
139
-  (0.1ms) RELEASE SAVEPOINT active_record_1
140
-  (0.0ms) SAVEPOINT active_record_1
141
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00]]
142
-  (0.1ms) RELEASE SAVEPOINT active_record_1
143
-  (0.0ms) SAVEPOINT active_record_1
144
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
145
-  (0.2ms) rollback transaction
146
-  (0.1ms) begin transaction
147
-  (0.1ms) SAVEPOINT active_record_1
148
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00]]
149
-  (0.1ms) RELEASE SAVEPOINT active_record_1
150
-  (0.1ms) rollback transaction
151
-  (0.0ms) begin transaction
152
-  (0.0ms) SAVEPOINT active_record_1
153
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00]]
154
-  (0.0ms) RELEASE SAVEPOINT active_record_1
155
-  (0.0ms) SAVEPOINT active_record_1
156
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00]]
157
-  (0.1ms) RELEASE SAVEPOINT active_record_1
158
-  (0.0ms) SAVEPOINT active_record_1
159
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:11 UTC +00:00]]
160
-  (0.0ms) RELEASE SAVEPOINT active_record_1
161
-  (0.0ms) SAVEPOINT active_record_1
162
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
163
-  (0.2ms) rollback transaction
164
- Connecting to database specified by database.yml
165
-  (26.1ms) select sqlite_version(*)
166
-  (146.9ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
167
-  (164.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
168
-  (177.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
169
-  (155.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
170
-  (0.1ms) SELECT version FROM "schema_migrations"
171
-  (176.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
172
-  (145.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
173
-  (3.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
174
- Connecting to database specified by database.yml
175
-  (0.4ms) begin transaction
176
-  (0.1ms) SAVEPOINT active_record_1
177
- SQL (7.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:43 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:43 UTC +00:00]]
178
-  (0.1ms) RELEASE SAVEPOINT active_record_1
179
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
180
-  (0.2ms) rollback transaction
181
-  (0.1ms) begin transaction
182
-  (0.0ms) SAVEPOINT active_record_1
183
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00]]
184
-  (0.1ms) RELEASE SAVEPOINT active_record_1
185
-  (0.0ms) SAVEPOINT active_record_1
186
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00]]
187
-  (0.0ms) RELEASE SAVEPOINT active_record_1
188
-  (0.0ms) SAVEPOINT active_record_1
189
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00]]
190
-  (0.0ms) RELEASE SAVEPOINT active_record_1
191
-  (0.0ms) SAVEPOINT active_record_1
192
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
193
-  (0.2ms) rollback transaction
194
-  (0.1ms) begin transaction
195
-  (0.1ms) SAVEPOINT active_record_1
196
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00]]
197
-  (0.1ms) RELEASE SAVEPOINT active_record_1
198
-  (0.1ms) rollback transaction
199
-  (0.0ms) begin transaction
200
-  (0.0ms) SAVEPOINT active_record_1
201
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00]]
202
-  (0.0ms) RELEASE SAVEPOINT active_record_1
203
-  (0.0ms) SAVEPOINT active_record_1
204
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00]]
205
-  (0.0ms) RELEASE SAVEPOINT active_record_1
206
-  (0.0ms) SAVEPOINT active_record_1
207
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:39:44 UTC +00:00]]
208
-  (0.0ms) RELEASE SAVEPOINT active_record_1
209
-  (0.0ms) SAVEPOINT active_record_1
210
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
211
-  (0.2ms) rollback transaction
212
- Connecting to database specified by database.yml
213
-  (28.6ms) select sqlite_version(*)
214
-  (167.8ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
215
-  (176.0ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
216
-  (188.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
217
-  (144.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
218
-  (0.1ms) SELECT version FROM "schema_migrations"
219
-  (187.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
220
-  (166.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
221
-  (3.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
222
- Connecting to database specified by database.yml
223
-  (0.4ms) begin transaction
224
-  (0.1ms) SAVEPOINT active_record_1
225
- SQL (7.9ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00]]
226
-  (0.1ms) RELEASE SAVEPOINT active_record_1
227
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
228
-  (0.2ms) rollback transaction
229
-  (0.1ms) begin transaction
230
-  (0.0ms) SAVEPOINT active_record_1
231
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00]]
232
-  (0.1ms) RELEASE SAVEPOINT active_record_1
233
-  (0.0ms) SAVEPOINT active_record_1
234
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00]]
235
-  (0.0ms) RELEASE SAVEPOINT active_record_1
236
-  (0.0ms) SAVEPOINT active_record_1
237
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00]]
238
-  (0.0ms) RELEASE SAVEPOINT active_record_1
239
-  (0.0ms) SAVEPOINT active_record_1
240
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
241
-  (0.2ms) rollback transaction
242
-  (0.1ms) begin transaction
243
-  (0.1ms) SAVEPOINT active_record_1
244
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00]]
245
-  (0.1ms) RELEASE SAVEPOINT active_record_1
246
-  (0.1ms) rollback transaction
247
-  (0.0ms) begin transaction
248
-  (0.0ms) SAVEPOINT active_record_1
249
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00]]
250
-  (0.0ms) RELEASE SAVEPOINT active_record_1
251
-  (0.0ms) SAVEPOINT active_record_1
252
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00]]
253
-  (0.0ms) RELEASE SAVEPOINT active_record_1
254
-  (0.0ms) SAVEPOINT active_record_1
255
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:41:42 UTC +00:00]]
256
-  (0.0ms) RELEASE SAVEPOINT active_record_1
257
-  (0.0ms) SAVEPOINT active_record_1
258
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
259
-  (0.2ms) rollback transaction
260
- Connecting to database specified by database.yml
261
-  (0.5ms) begin transaction
262
-  (0.1ms) SAVEPOINT active_record_1
263
- SQL (7.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00]]
264
-  (0.1ms) RELEASE SAVEPOINT active_record_1
265
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
266
-  (0.2ms) rollback transaction
267
-  (0.1ms) begin transaction
268
-  (0.0ms) SAVEPOINT active_record_1
269
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00]]
270
-  (0.1ms) RELEASE SAVEPOINT active_record_1
271
-  (0.0ms) SAVEPOINT active_record_1
272
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00]]
273
-  (0.1ms) RELEASE SAVEPOINT active_record_1
274
-  (0.0ms) SAVEPOINT active_record_1
275
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00]]
276
-  (0.0ms) RELEASE SAVEPOINT active_record_1
277
-  (0.0ms) SAVEPOINT active_record_1
278
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
279
-  (0.3ms) rollback transaction
280
-  (0.1ms) begin transaction
281
-  (0.1ms) SAVEPOINT active_record_1
282
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00]]
283
-  (0.1ms) RELEASE SAVEPOINT active_record_1
284
-  (0.2ms) rollback transaction
285
-  (0.1ms) begin transaction
286
-  (0.0ms) SAVEPOINT active_record_1
287
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00]]
288
-  (0.0ms) RELEASE SAVEPOINT active_record_1
289
-  (0.1ms) SAVEPOINT active_record_1
290
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00]]
291
-  (0.0ms) RELEASE SAVEPOINT active_record_1
292
-  (0.0ms) SAVEPOINT active_record_1
293
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:09 UTC +00:00]]
294
-  (0.1ms) RELEASE SAVEPOINT active_record_1
295
-  (0.0ms) SAVEPOINT active_record_1
296
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
297
-  (0.2ms) rollback transaction
298
- Connecting to database specified by database.yml
299
-  (0.5ms) begin transaction
300
-  (0.1ms) SAVEPOINT active_record_1
301
- SQL (37.9ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00]]
302
-  (0.1ms) RELEASE SAVEPOINT active_record_1
303
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
304
-  (0.2ms) rollback transaction
305
-  (0.1ms) begin transaction
306
-  (0.0ms) SAVEPOINT active_record_1
307
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00]]
308
-  (0.1ms) RELEASE SAVEPOINT active_record_1
309
-  (0.0ms) SAVEPOINT active_record_1
310
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00]]
311
-  (0.1ms) RELEASE SAVEPOINT active_record_1
312
-  (0.0ms) SAVEPOINT active_record_1
313
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00]]
314
-  (0.0ms) RELEASE SAVEPOINT active_record_1
315
-  (0.0ms) SAVEPOINT active_record_1
316
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
317
-  (0.2ms) rollback transaction
318
-  (0.1ms) begin transaction
319
-  (0.0ms) SAVEPOINT active_record_1
320
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00]]
321
-  (0.1ms) RELEASE SAVEPOINT active_record_1
322
-  (0.1ms) rollback transaction
323
-  (0.0ms) begin transaction
324
-  (0.0ms) SAVEPOINT active_record_1
325
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00]]
326
-  (0.0ms) RELEASE SAVEPOINT active_record_1
327
-  (0.0ms) SAVEPOINT active_record_1
328
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00]]
329
-  (0.0ms) RELEASE SAVEPOINT active_record_1
330
-  (0.1ms) SAVEPOINT active_record_1
331
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:54:31 UTC +00:00]]
332
-  (0.0ms) RELEASE SAVEPOINT active_record_1
333
-  (0.0ms) SAVEPOINT active_record_1
334
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
335
-  (0.2ms) rollback transaction
336
- Connecting to database specified by database.yml
337
-  (1.3ms) begin transaction
338
-  (0.2ms) SAVEPOINT active_record_1
339
- SQL (45.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00]]
340
-  (0.1ms) RELEASE SAVEPOINT active_record_1
341
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
342
-  (0.2ms) rollback transaction
343
-  (0.1ms) begin transaction
344
-  (0.0ms) SAVEPOINT active_record_1
345
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00]]
346
-  (0.1ms) RELEASE SAVEPOINT active_record_1
347
-  (0.0ms) SAVEPOINT active_record_1
348
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00]]
349
-  (0.1ms) RELEASE SAVEPOINT active_record_1
350
-  (0.0ms) SAVEPOINT active_record_1
351
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00]]
352
-  (0.0ms) RELEASE SAVEPOINT active_record_1
353
-  (0.0ms) SAVEPOINT active_record_1
354
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
355
-  (0.3ms) rollback transaction
356
-  (0.1ms) begin transaction
357
-  (0.0ms) SAVEPOINT active_record_1
358
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00]]
359
-  (0.1ms) RELEASE SAVEPOINT active_record_1
360
-  (0.1ms) rollback transaction
361
-  (0.0ms) begin transaction
362
-  (0.0ms) SAVEPOINT active_record_1
363
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00]]
364
-  (0.0ms) RELEASE SAVEPOINT active_record_1
365
-  (0.0ms) SAVEPOINT active_record_1
366
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00]]
367
-  (0.0ms) RELEASE SAVEPOINT active_record_1
368
-  (0.0ms) SAVEPOINT active_record_1
369
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 20:59:01 UTC +00:00]]
370
-  (0.0ms) RELEASE SAVEPOINT active_record_1
371
-  (0.0ms) SAVEPOINT active_record_1
372
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
373
-  (0.2ms) rollback transaction
374
- Connecting to database specified by database.yml
375
-  (0.6ms) begin transaction
376
-  (0.1ms) SAVEPOINT active_record_1
377
- SQL (58.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00]]
378
-  (0.1ms) RELEASE SAVEPOINT active_record_1
379
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
380
-  (0.3ms) rollback transaction
381
-  (0.2ms) begin transaction
382
-  (0.1ms) SAVEPOINT active_record_1
383
- SQL (0.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00]]
384
-  (0.1ms) RELEASE SAVEPOINT active_record_1
385
-  (0.1ms) SAVEPOINT active_record_1
386
- SQL (0.8ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00]]
387
-  (0.1ms) RELEASE SAVEPOINT active_record_1
388
-  (0.1ms) SAVEPOINT active_record_1
389
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00]]
390
-  (0.1ms) RELEASE SAVEPOINT active_record_1
391
-  (0.0ms) SAVEPOINT active_record_1
392
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
393
-  (0.3ms) rollback transaction
394
-  (0.1ms) begin transaction
395
-  (0.1ms) SAVEPOINT active_record_1
396
- SQL (0.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00]]
397
-  (0.1ms) RELEASE SAVEPOINT active_record_1
398
-  (0.2ms) rollback transaction
399
-  (0.1ms) begin transaction
400
-  (0.1ms) SAVEPOINT active_record_1
401
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00]]
402
-  (0.1ms) RELEASE SAVEPOINT active_record_1
403
-  (0.1ms) SAVEPOINT active_record_1
404
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00]]
405
-  (0.1ms) RELEASE SAVEPOINT active_record_1
406
-  (0.1ms) SAVEPOINT active_record_1
407
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:02:13 UTC +00:00]]
408
-  (0.1ms) RELEASE SAVEPOINT active_record_1
409
-  (0.0ms) SAVEPOINT active_record_1
410
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
411
-  (0.2ms) rollback transaction
412
- Connecting to database specified by database.yml
413
-  (0.6ms) begin transaction
414
-  (0.1ms) SAVEPOINT active_record_1
415
- SQL (60.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00]]
416
-  (0.2ms) RELEASE SAVEPOINT active_record_1
417
- Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
418
-  (0.3ms) rollback transaction
419
-  (0.1ms) begin transaction
420
-  (0.1ms) SAVEPOINT active_record_1
421
- SQL (0.9ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00]]
422
-  (0.1ms) RELEASE SAVEPOINT active_record_1
423
-  (0.1ms) SAVEPOINT active_record_1
424
- SQL (1.0ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00]]
425
-  (0.1ms) RELEASE SAVEPOINT active_record_1
426
-  (0.1ms) SAVEPOINT active_record_1
427
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00]]
428
-  (0.1ms) RELEASE SAVEPOINT active_record_1
429
-  (0.0ms) SAVEPOINT active_record_1
430
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
431
-  (0.3ms) rollback transaction
432
-  (0.1ms) begin transaction
433
-  (0.1ms) SAVEPOINT active_record_1
434
- SQL (0.9ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00]]
435
-  (0.1ms) RELEASE SAVEPOINT active_record_1
436
-  (0.3ms) rollback transaction
437
-  (0.1ms) begin transaction
438
-  (0.1ms) SAVEPOINT active_record_1
439
- SQL (2.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00]]
440
-  (0.1ms) RELEASE SAVEPOINT active_record_1
441
-  (0.1ms) SAVEPOINT active_record_1
442
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00]]
443
-  (0.1ms) RELEASE SAVEPOINT active_record_1
444
-  (0.1ms) SAVEPOINT active_record_1
445
- SQL (0.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:10:24 UTC +00:00]]
446
-  (0.1ms) RELEASE SAVEPOINT active_record_1
447
-  (0.1ms) SAVEPOINT active_record_1
448
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
449
-  (0.2ms) rollback transaction
450
- Connecting to database specified by database.yml
451
-  (0.6ms) begin transaction
452
-  (0.1ms) SAVEPOINT active_record_1
453
- SQL (38.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00]]
454
-  (0.1ms) RELEASE SAVEPOINT active_record_1
455
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
456
-  (0.3ms) rollback transaction
457
-  (0.1ms) begin transaction
458
-  (0.0ms) SAVEPOINT active_record_1
459
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00]]
460
-  (0.1ms) RELEASE SAVEPOINT active_record_1
461
-  (0.0ms) SAVEPOINT active_record_1
462
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00]]
463
-  (0.1ms) RELEASE SAVEPOINT active_record_1
464
-  (0.0ms) SAVEPOINT active_record_1
465
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00]]
466
-  (0.0ms) RELEASE SAVEPOINT active_record_1
467
-  (0.0ms) SAVEPOINT active_record_1
468
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
469
-  (0.3ms) rollback transaction
470
-  (0.1ms) begin transaction
471
-  (0.0ms) SAVEPOINT active_record_1
472
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00]]
473
-  (0.1ms) RELEASE SAVEPOINT active_record_1
474
-  (0.1ms) rollback transaction
475
-  (0.0ms) begin transaction
476
-  (0.0ms) SAVEPOINT active_record_1
477
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00]]
478
-  (0.0ms) RELEASE SAVEPOINT active_record_1
479
-  (0.0ms) SAVEPOINT active_record_1
480
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00]]
481
-  (0.0ms) RELEASE SAVEPOINT active_record_1
482
-  (0.0ms) SAVEPOINT active_record_1
483
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:13 UTC +00:00]]
484
-  (0.0ms) RELEASE SAVEPOINT active_record_1
485
-  (0.0ms) SAVEPOINT active_record_1
486
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
487
-  (0.2ms) rollback transaction
488
- Connecting to database specified by database.yml
489
-  (0.5ms) begin transaction
490
-  (0.1ms) SAVEPOINT active_record_1
491
- SQL (38.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00]]
492
-  (0.1ms) RELEASE SAVEPOINT active_record_1
493
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
494
-  (0.2ms) rollback transaction
495
-  (0.1ms) begin transaction
496
-  (0.0ms) SAVEPOINT active_record_1
497
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00]]
498
-  (0.1ms) RELEASE SAVEPOINT active_record_1
499
-  (0.0ms) SAVEPOINT active_record_1
500
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00]]
501
-  (0.1ms) RELEASE SAVEPOINT active_record_1
502
-  (0.1ms) SAVEPOINT active_record_1
503
- SQL (0.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00]]
504
-  (0.1ms) RELEASE SAVEPOINT active_record_1
505
-  (0.0ms) SAVEPOINT active_record_1
506
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
507
-  (0.3ms) rollback transaction
508
-  (0.1ms) begin transaction
509
-  (0.0ms) SAVEPOINT active_record_1
510
- SQL (0.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00]]
511
-  (0.1ms) RELEASE SAVEPOINT active_record_1
512
-  (0.2ms) rollback transaction
513
-  (0.1ms) begin transaction
514
-  (0.1ms) SAVEPOINT active_record_1
515
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00]]
516
-  (0.1ms) RELEASE SAVEPOINT active_record_1
517
-  (0.1ms) SAVEPOINT active_record_1
518
- SQL (0.7ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00]]
519
-  (0.1ms) RELEASE SAVEPOINT active_record_1
520
-  (0.1ms) SAVEPOINT active_record_1
521
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:11:34 UTC +00:00]]
522
-  (0.1ms) RELEASE SAVEPOINT active_record_1
523
-  (0.0ms) SAVEPOINT active_record_1
524
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
525
-  (0.2ms) rollback transaction
526
- Connecting to database specified by database.yml
527
-  (0.5ms) begin transaction
528
-  (0.1ms) SAVEPOINT active_record_1
529
- SQL (40.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00]]
530
-  (0.1ms) RELEASE SAVEPOINT active_record_1
531
- Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
532
-  (0.3ms) rollback transaction
533
-  (0.1ms) begin transaction
534
-  (0.0ms) SAVEPOINT active_record_1
535
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00]]
536
-  (0.0ms) RELEASE SAVEPOINT active_record_1
537
-  (0.0ms) SAVEPOINT active_record_1
538
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00]]
539
-  (0.1ms) RELEASE SAVEPOINT active_record_1
540
-  (0.0ms) SAVEPOINT active_record_1
541
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00]]
542
-  (0.0ms) RELEASE SAVEPOINT active_record_1
543
-  (0.0ms) SAVEPOINT active_record_1
544
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
545
-  (0.6ms) rollback transaction
546
-  (0.1ms) begin transaction
547
-  (0.0ms) SAVEPOINT active_record_1
548
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00]]
549
-  (0.1ms) RELEASE SAVEPOINT active_record_1
550
-  (0.2ms) rollback transaction
551
-  (0.1ms) begin transaction
552
-  (0.0ms) SAVEPOINT active_record_1
553
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00]]
554
-  (0.1ms) RELEASE SAVEPOINT active_record_1
555
-  (0.0ms) SAVEPOINT active_record_1
556
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00]]
557
-  (0.1ms) RELEASE SAVEPOINT active_record_1
558
-  (0.0ms) SAVEPOINT active_record_1
559
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:14:02 UTC +00:00]]
560
-  (0.0ms) RELEASE SAVEPOINT active_record_1
561
-  (0.0ms) SAVEPOINT active_record_1
562
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
563
-  (0.3ms) rollback transaction
564
- Connecting to database specified by database.yml
565
-  (0.5ms) begin transaction
566
-  (0.1ms) SAVEPOINT active_record_1
567
- SQL (51.0ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:15:33 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:15:33 UTC +00:00]]
568
-  (0.1ms) RELEASE SAVEPOINT active_record_1
569
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
570
-  (0.2ms) rollback transaction
571
-  (0.1ms) begin transaction
572
-  (0.0ms) SAVEPOINT active_record_1
573
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00]]
574
-  (0.1ms) RELEASE SAVEPOINT active_record_1
575
-  (0.0ms) SAVEPOINT active_record_1
576
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00]]
577
-  (0.0ms) RELEASE SAVEPOINT active_record_1
578
-  (0.0ms) SAVEPOINT active_record_1
579
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00]]
580
-  (0.0ms) RELEASE SAVEPOINT active_record_1
581
-  (0.0ms) SAVEPOINT active_record_1
582
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
583
-  (0.3ms) rollback transaction
584
-  (0.1ms) begin transaction
585
-  (0.1ms) SAVEPOINT active_record_1
586
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00]]
587
-  (0.1ms) RELEASE SAVEPOINT active_record_1
588
-  (0.1ms) rollback transaction
589
-  (0.0ms) begin transaction
590
-  (0.0ms) SAVEPOINT active_record_1
591
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00]]
592
-  (0.0ms) RELEASE SAVEPOINT active_record_1
593
-  (0.0ms) SAVEPOINT active_record_1
594
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00]]
595
-  (0.0ms) RELEASE SAVEPOINT active_record_1
596
-  (0.0ms) SAVEPOINT active_record_1
597
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 21:15:34 UTC +00:00]]
598
-  (0.0ms) RELEASE SAVEPOINT active_record_1
599
-  (0.0ms) SAVEPOINT active_record_1
600
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
601
-  (0.2ms) rollback transaction
602
- Connecting to database specified by database.yml
603
-  (0.6ms) begin transaction
604
-  (0.1ms) SAVEPOINT active_record_1
605
- SQL (27.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:35 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:35 UTC +00:00]]
606
-  (0.1ms) RELEASE SAVEPOINT active_record_1
607
- Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
608
-  (0.3ms) rollback transaction
609
-  (0.1ms) begin transaction
610
-  (0.1ms) SAVEPOINT active_record_1
611
- SQL (1.0ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00]]
612
-  (0.1ms) RELEASE SAVEPOINT active_record_1
613
-  (0.1ms) SAVEPOINT active_record_1
614
- SQL (0.9ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00]]
615
-  (0.1ms) RELEASE SAVEPOINT active_record_1
616
-  (0.1ms) SAVEPOINT active_record_1
617
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00]]
618
-  (0.0ms) RELEASE SAVEPOINT active_record_1
619
-  (0.1ms) SAVEPOINT active_record_1
620
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
621
-  (0.2ms) rollback transaction
622
-  (0.0ms) begin transaction
623
-  (0.0ms) SAVEPOINT active_record_1
624
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00]]
625
-  (0.1ms) RELEASE SAVEPOINT active_record_1
626
-  (0.1ms) rollback transaction
627
-  (0.0ms) begin transaction
628
-  (0.0ms) SAVEPOINT active_record_1
629
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00]]
630
-  (0.0ms) RELEASE SAVEPOINT active_record_1
631
-  (0.0ms) SAVEPOINT active_record_1
632
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00]]
633
-  (0.0ms) RELEASE SAVEPOINT active_record_1
634
-  (0.0ms) SAVEPOINT active_record_1
635
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:11:36 UTC +00:00]]
636
-  (0.0ms) RELEASE SAVEPOINT active_record_1
637
-  (0.0ms) SAVEPOINT active_record_1
638
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
639
-  (0.3ms) rollback transaction
640
- Connecting to database specified by database.yml
641
-  (0.6ms) begin transaction
642
-  (0.1ms) SAVEPOINT active_record_1
643
- SQL (7.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00]]
644
-  (0.1ms) RELEASE SAVEPOINT active_record_1
645
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
646
-  (0.2ms) rollback transaction
647
-  (0.1ms) begin transaction
648
-  (0.0ms) SAVEPOINT active_record_1
649
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00]]
650
-  (0.0ms) RELEASE SAVEPOINT active_record_1
651
-  (0.0ms) SAVEPOINT active_record_1
652
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00]]
653
-  (0.0ms) RELEASE SAVEPOINT active_record_1
654
-  (0.0ms) SAVEPOINT active_record_1
655
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00]]
656
-  (0.0ms) RELEASE SAVEPOINT active_record_1
657
-  (0.0ms) SAVEPOINT active_record_1
658
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
659
-  (0.2ms) rollback transaction
660
-  (0.1ms) begin transaction
661
-  (0.0ms) SAVEPOINT active_record_1
662
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00]]
663
-  (0.1ms) RELEASE SAVEPOINT active_record_1
664
-  (0.1ms) rollback transaction
665
-  (0.0ms) begin transaction
666
-  (0.0ms) SAVEPOINT active_record_1
667
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00]]
668
-  (0.1ms) RELEASE SAVEPOINT active_record_1
669
-  (0.0ms) SAVEPOINT active_record_1
670
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00]]
671
-  (0.0ms) RELEASE SAVEPOINT active_record_1
672
-  (0.0ms) SAVEPOINT active_record_1
673
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:12:52 UTC +00:00]]
674
-  (0.0ms) RELEASE SAVEPOINT active_record_1
675
-  (0.0ms) SAVEPOINT active_record_1
676
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
677
-  (0.2ms) rollback transaction
678
- Connecting to database specified by database.yml
679
-  (0.7ms) begin transaction
680
-  (0.1ms) SAVEPOINT active_record_1
681
- SQL (7.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00]]
682
-  (0.1ms) RELEASE SAVEPOINT active_record_1
683
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
684
-  (0.2ms) rollback transaction
685
-  (0.1ms) begin transaction
686
-  (0.0ms) SAVEPOINT active_record_1
687
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00]]
688
-  (0.1ms) RELEASE SAVEPOINT active_record_1
689
-  (0.0ms) SAVEPOINT active_record_1
690
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00]]
691
-  (0.1ms) RELEASE SAVEPOINT active_record_1
692
-  (0.0ms) SAVEPOINT active_record_1
693
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00]]
694
-  (0.0ms) RELEASE SAVEPOINT active_record_1
695
-  (0.0ms) SAVEPOINT active_record_1
696
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
697
-  (0.2ms) rollback transaction
698
-  (0.1ms) begin transaction
699
-  (0.1ms) SAVEPOINT active_record_1
700
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00]]
701
-  (0.1ms) RELEASE SAVEPOINT active_record_1
702
-  (0.1ms) rollback transaction
703
-  (0.0ms) begin transaction
704
-  (0.0ms) SAVEPOINT active_record_1
705
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00]]
706
-  (0.0ms) RELEASE SAVEPOINT active_record_1
707
-  (0.0ms) SAVEPOINT active_record_1
708
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00]]
709
-  (0.1ms) RELEASE SAVEPOINT active_record_1
710
-  (0.0ms) SAVEPOINT active_record_1
711
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:16:00 UTC +00:00]]
712
-  (0.0ms) RELEASE SAVEPOINT active_record_1
713
-  (0.0ms) SAVEPOINT active_record_1
714
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
715
-  (0.2ms) rollback transaction
716
-  (0.6ms) begin transaction
717
- ------------------------------------------------------------------------------------
718
- AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
719
- ------------------------------------------------------------------------------------
720
-  (0.1ms) SAVEPOINT active_record_1
721
- SQL (7.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00]]
722
-  (0.2ms) RELEASE SAVEPOINT active_record_1
723
- Manufacturer Load (0.5ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = ? ORDER BY "manufacturers"."id" ASC LIMIT 1 [["id", 1]]
724
-  (0.3ms) rollback transaction
725
-  (0.1ms) begin transaction
726
- -------------------------------------------------------------------------------------
727
- AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
728
- -------------------------------------------------------------------------------------
729
-  (0.1ms) SAVEPOINT active_record_1
730
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00]]
731
-  (0.1ms) RELEASE SAVEPOINT active_record_1
732
-  (0.1ms) SAVEPOINT active_record_1
733
- SQL (0.7ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00]]
734
-  (0.1ms) RELEASE SAVEPOINT active_record_1
735
-  (0.1ms) SAVEPOINT active_record_1
736
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00]]
737
-  (0.1ms) RELEASE SAVEPOINT active_record_1
738
-  (0.1ms) SAVEPOINT active_record_1
739
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
740
-  (0.2ms) rollback transaction
741
-  (0.1ms) begin transaction
742
- -----------------------------------------------------------------------------------------
743
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
744
- -----------------------------------------------------------------------------------------
745
-  (0.1ms) SAVEPOINT active_record_1
746
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00]]
747
-  (0.1ms) RELEASE SAVEPOINT active_record_1
748
-  (0.2ms) rollback transaction
749
-  (0.1ms) begin transaction
750
- ---------------------------------------------------------------------------------------
751
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
752
- ---------------------------------------------------------------------------------------
753
-  (0.1ms) SAVEPOINT active_record_1
754
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00]]
755
-  (0.1ms) RELEASE SAVEPOINT active_record_1
756
-  (0.1ms) SAVEPOINT active_record_1
757
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00]]
758
-  (0.1ms) RELEASE SAVEPOINT active_record_1
759
-  (0.1ms) SAVEPOINT active_record_1
760
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:43:48 UTC +00:00]]
761
-  (0.1ms) RELEASE SAVEPOINT active_record_1
762
-  (0.1ms) SAVEPOINT active_record_1
763
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
764
-  (0.2ms) rollback transaction
765
-  (0.6ms) begin transaction
766
- ------------------------------------------------------------------------------------
767
- AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
768
- ------------------------------------------------------------------------------------
769
-  (0.1ms) rollback transaction
770
-  (0.1ms) begin transaction
771
- -------------------------------------------------------------------------------------
772
- AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
773
- -------------------------------------------------------------------------------------
774
-  (0.1ms) rollback transaction
775
-  (0.1ms) begin transaction
776
- -----------------------------------------------------------------------------------------
777
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
778
- -----------------------------------------------------------------------------------------
779
-  (0.1ms) rollback transaction
780
-  (0.1ms) begin transaction
781
- ---------------------------------------------------------------------------------------
782
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
783
- ---------------------------------------------------------------------------------------
784
-  (0.1ms) rollback transaction
785
-  (0.5ms) begin transaction
786
- ------------------------------------------------------------------------------------
787
- AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
788
- ------------------------------------------------------------------------------------
789
-  (0.1ms) rollback transaction
790
-  (0.1ms) begin transaction
791
- -------------------------------------------------------------------------------------
792
- AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
793
- -------------------------------------------------------------------------------------
794
-  (0.1ms) rollback transaction
795
-  (0.1ms) begin transaction
796
- -----------------------------------------------------------------------------------------
797
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
798
- -----------------------------------------------------------------------------------------
799
-  (0.1ms) rollback transaction
800
-  (0.1ms) begin transaction
801
- ---------------------------------------------------------------------------------------
802
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
803
- ---------------------------------------------------------------------------------------
804
-  (0.1ms) rollback transaction
805
-  (0.5ms) begin transaction
806
- ------------------------------------------------------------------------------------
807
- AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
808
- ------------------------------------------------------------------------------------
809
-  (0.1ms) rollback transaction
810
-  (0.1ms) begin transaction
811
- -------------------------------------------------------------------------------------
812
- AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
813
- -------------------------------------------------------------------------------------
814
-  (0.1ms) rollback transaction
815
-  (0.1ms) begin transaction
816
- -----------------------------------------------------------------------------------------
817
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
818
- -----------------------------------------------------------------------------------------
819
-  (0.1ms) rollback transaction
820
-  (0.1ms) begin transaction
821
- ---------------------------------------------------------------------------------------
822
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
823
- ---------------------------------------------------------------------------------------
824
-  (0.1ms) rollback transaction
825
-  (0.5ms) begin transaction
826
- ------------------------------------------------------------------------------------
827
- AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
828
- ------------------------------------------------------------------------------------
829
-  (0.1ms) rollback transaction
830
-  (0.1ms) begin transaction
831
- -------------------------------------------------------------------------------------
832
- AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
833
- -------------------------------------------------------------------------------------
834
-  (0.1ms) rollback transaction
835
-  (0.1ms) begin transaction
836
- -----------------------------------------------------------------------------------------
837
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
838
- -----------------------------------------------------------------------------------------
839
-  (0.1ms) rollback transaction
840
-  (0.1ms) begin transaction
841
- ---------------------------------------------------------------------------------------
842
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
843
- ---------------------------------------------------------------------------------------
844
-  (0.1ms) rollback transaction
845
-  (0.5ms) begin transaction
846
- ------------------------------------------------------------------------------------
847
- AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
848
- ------------------------------------------------------------------------------------
849
-  (0.1ms) rollback transaction
850
-  (0.1ms) begin transaction
851
- -------------------------------------------------------------------------------------
852
- AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
853
- -------------------------------------------------------------------------------------
854
-  (0.1ms) rollback transaction
855
-  (0.1ms) begin transaction
856
- -----------------------------------------------------------------------------------------
857
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
858
- -----------------------------------------------------------------------------------------
859
-  (0.1ms) rollback transaction
860
-  (0.1ms) begin transaction
861
- ---------------------------------------------------------------------------------------
862
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
863
- ---------------------------------------------------------------------------------------
864
-  (0.1ms) rollback transaction
865
-  (0.5ms) begin transaction
866
- ------------------------------------------------------------------------------------
867
- AttrInitializableTest: test_admin_role_can_mass-assign_manufacturer_at_creation_time
868
- ------------------------------------------------------------------------------------
869
-  (0.1ms) rollback transaction
870
-  (0.1ms) begin transaction
871
- -------------------------------------------------------------------------------------
872
- AttrInitializableTest: test_admin_role_cannot_mass-assign_manufacturer_at_update_time
873
- -------------------------------------------------------------------------------------
874
-  (0.1ms) rollback transaction
875
-  (0.1ms) begin transaction
876
- -----------------------------------------------------------------------------------------
877
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_creation_time
878
- -----------------------------------------------------------------------------------------
879
-  (0.1ms) rollback transaction
880
-  (0.1ms) begin transaction
881
- ---------------------------------------------------------------------------------------
882
- AttrInitializableTest: test_default_role_cannot_mass-assign_manufacturer_at_update_time
883
- ---------------------------------------------------------------------------------------
884
-  (0.1ms) rollback transaction
885
- Connecting to database specified by database.yml
886
-  (0.5ms) begin transaction
887
-  (0.1ms) rollback transaction
888
-  (0.1ms) begin transaction
889
-  (0.0ms) rollback transaction
890
-  (0.0ms) begin transaction
891
-  (0.0ms) rollback transaction
892
-  (0.0ms) begin transaction
893
-  (0.0ms) rollback transaction
894
- Connecting to database specified by database.yml
895
-  (2.2ms) select sqlite_version(*)
896
-  (162.9ms) CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
897
-  (165.0ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
898
-  (177.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
899
-  (144.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
900
-  (0.1ms) SELECT version FROM "schema_migrations"
901
-  (165.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
902
-  (155.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131027192625')
903
-  (3.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
904
- Connecting to database specified by database.yml
905
-  (0.6ms) begin transaction
906
-  (0.1ms) SAVEPOINT active_record_1
907
- SQL (7.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00]]
908
-  (0.1ms) RELEASE SAVEPOINT active_record_1
909
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
910
-  (0.2ms) rollback transaction
911
-  (0.1ms) begin transaction
912
-  (0.0ms) SAVEPOINT active_record_1
913
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00]]
914
-  (0.0ms) RELEASE SAVEPOINT active_record_1
915
-  (0.0ms) SAVEPOINT active_record_1
916
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00]]
917
-  (0.0ms) RELEASE SAVEPOINT active_record_1
918
-  (0.0ms) SAVEPOINT active_record_1
919
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00]]
920
-  (0.0ms) RELEASE SAVEPOINT active_record_1
921
-  (0.0ms) SAVEPOINT active_record_1
922
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
923
-  (0.2ms) rollback transaction
924
-  (0.1ms) begin transaction
925
-  (0.1ms) SAVEPOINT active_record_1
926
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00]]
927
-  (0.1ms) RELEASE SAVEPOINT active_record_1
928
-  (0.1ms) rollback transaction
929
-  (0.0ms) begin transaction
930
-  (0.0ms) SAVEPOINT active_record_1
931
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00]]
932
-  (0.0ms) RELEASE SAVEPOINT active_record_1
933
-  (0.0ms) SAVEPOINT active_record_1
934
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00]]
935
-  (0.0ms) RELEASE SAVEPOINT active_record_1
936
-  (0.0ms) SAVEPOINT active_record_1
937
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00], ["updated_at", Sun, 08 Dec 2013 22:51:54 UTC +00:00]]
938
-  (0.1ms) RELEASE SAVEPOINT active_record_1
939
-  (0.0ms) SAVEPOINT active_record_1
940
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
941
-  (0.2ms) rollback transaction
942
- Connecting to database specified by database.yml
943
-  (0.6ms) begin transaction
944
-  (0.1ms) SAVEPOINT active_record_1
945
- SQL (7.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00]]
946
-  (0.1ms) RELEASE SAVEPOINT active_record_1
947
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
948
-  (0.2ms) rollback transaction
949
-  (0.1ms) begin transaction
950
-  (0.0ms) SAVEPOINT active_record_1
951
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00]]
952
-  (0.0ms) RELEASE SAVEPOINT active_record_1
953
-  (0.0ms) SAVEPOINT active_record_1
954
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00]]
955
-  (0.0ms) RELEASE SAVEPOINT active_record_1
956
-  (0.0ms) SAVEPOINT active_record_1
957
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00]]
958
-  (0.0ms) RELEASE SAVEPOINT active_record_1
959
-  (0.0ms) SAVEPOINT active_record_1
960
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
961
-  (0.2ms) rollback transaction
962
-  (0.1ms) begin transaction
963
-  (0.0ms) SAVEPOINT active_record_1
964
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00]]
965
-  (0.1ms) RELEASE SAVEPOINT active_record_1
966
-  (0.1ms) rollback transaction
967
-  (0.0ms) begin transaction
968
-  (0.0ms) SAVEPOINT active_record_1
969
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00]]
970
-  (0.1ms) RELEASE SAVEPOINT active_record_1
971
-  (0.0ms) SAVEPOINT active_record_1
972
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00]]
973
-  (0.0ms) RELEASE SAVEPOINT active_record_1
974
-  (0.0ms) SAVEPOINT active_record_1
975
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:58:14 UTC +00:00]]
976
-  (0.0ms) RELEASE SAVEPOINT active_record_1
977
-  (0.0ms) SAVEPOINT active_record_1
978
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
979
-  (0.2ms) rollback transaction
980
- Connecting to database specified by database.yml
981
-  (0.6ms) begin transaction
982
-  (0.1ms) SAVEPOINT active_record_1
983
- SQL (7.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00]]
984
-  (0.1ms) RELEASE SAVEPOINT active_record_1
985
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
986
-  (0.2ms) rollback transaction
987
-  (0.1ms) begin transaction
988
-  (0.0ms) SAVEPOINT active_record_1
989
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00]]
990
-  (0.0ms) RELEASE SAVEPOINT active_record_1
991
-  (0.1ms) SAVEPOINT active_record_1
992
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00]]
993
-  (0.0ms) RELEASE SAVEPOINT active_record_1
994
-  (0.0ms) SAVEPOINT active_record_1
995
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00]]
996
-  (0.0ms) RELEASE SAVEPOINT active_record_1
997
-  (0.0ms) SAVEPOINT active_record_1
998
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
999
-  (0.2ms) rollback transaction
1000
-  (0.1ms) begin transaction
1001
-  (0.0ms) SAVEPOINT active_record_1
1002
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00]]
1003
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1004
-  (0.1ms) rollback transaction
1005
-  (0.0ms) begin transaction
1006
-  (0.0ms) SAVEPOINT active_record_1
1007
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00]]
1008
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1009
-  (0.0ms) SAVEPOINT active_record_1
1010
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00]]
1011
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1012
-  (0.0ms) SAVEPOINT active_record_1
1013
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 01:59:59 UTC +00:00]]
1014
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1015
-  (0.0ms) SAVEPOINT active_record_1
1016
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1017
-  (0.2ms) rollback transaction
1018
- Connecting to database specified by database.yml
1019
-  (0.6ms) begin transaction
1020
-  (0.1ms) SAVEPOINT active_record_1
1021
- SQL (7.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00]]
1022
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1023
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
1024
-  (0.2ms) rollback transaction
1025
-  (0.1ms) begin transaction
1026
-  (0.0ms) SAVEPOINT active_record_1
1027
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00]]
1028
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1029
-  (0.0ms) SAVEPOINT active_record_1
1030
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00]]
1031
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1032
-  (0.0ms) SAVEPOINT active_record_1
1033
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00]]
1034
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1035
-  (0.0ms) SAVEPOINT active_record_1
1036
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1037
-  (0.3ms) rollback transaction
1038
-  (0.1ms) begin transaction
1039
-  (0.0ms) SAVEPOINT active_record_1
1040
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00]]
1041
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1042
-  (0.1ms) rollback transaction
1043
-  (0.0ms) begin transaction
1044
-  (0.0ms) SAVEPOINT active_record_1
1045
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00]]
1046
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1047
-  (0.0ms) SAVEPOINT active_record_1
1048
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00]]
1049
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1050
-  (0.0ms) SAVEPOINT active_record_1
1051
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:16 UTC +00:00]]
1052
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1053
-  (0.0ms) SAVEPOINT active_record_1
1054
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1055
-  (0.2ms) rollback transaction
1056
- Connecting to database specified by database.yml
1057
-  (0.6ms) begin transaction
1058
-  (0.1ms) SAVEPOINT active_record_1
1059
- SQL (7.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00]]
1060
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1061
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
1062
-  (0.2ms) rollback transaction
1063
-  (0.1ms) begin transaction
1064
-  (0.0ms) SAVEPOINT active_record_1
1065
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00]]
1066
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1067
-  (0.0ms) SAVEPOINT active_record_1
1068
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00]]
1069
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1070
-  (0.0ms) SAVEPOINT active_record_1
1071
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00]]
1072
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1073
-  (0.0ms) SAVEPOINT active_record_1
1074
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1075
-  (0.2ms) rollback transaction
1076
-  (0.1ms) begin transaction
1077
-  (0.1ms) SAVEPOINT active_record_1
1078
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00]]
1079
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1080
-  (0.1ms) rollback transaction
1081
-  (0.0ms) begin transaction
1082
-  (0.1ms) SAVEPOINT active_record_1
1083
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00]]
1084
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1085
-  (0.0ms) SAVEPOINT active_record_1
1086
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00]]
1087
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1088
-  (0.0ms) SAVEPOINT active_record_1
1089
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:00:58 UTC +00:00]]
1090
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1091
-  (0.0ms) SAVEPOINT active_record_1
1092
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1093
-  (0.2ms) rollback transaction
1094
- Connecting to database specified by database.yml
1095
-  (0.5ms) begin transaction
1096
-  (0.1ms) SAVEPOINT active_record_1
1097
- SQL (38.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:25 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:25 UTC +00:00]]
1098
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1099
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
1100
-  (0.2ms) rollback transaction
1101
-  (0.1ms) begin transaction
1102
-  (0.0ms) SAVEPOINT active_record_1
1103
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00]]
1104
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1105
-  (0.0ms) SAVEPOINT active_record_1
1106
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00]]
1107
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1108
-  (0.0ms) SAVEPOINT active_record_1
1109
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00]]
1110
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1111
-  (0.0ms) SAVEPOINT active_record_1
1112
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1113
-  (0.2ms) rollback transaction
1114
-  (0.1ms) begin transaction
1115
-  (0.0ms) SAVEPOINT active_record_1
1116
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00]]
1117
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1118
-  (0.1ms) rollback transaction
1119
-  (0.0ms) begin transaction
1120
-  (0.0ms) SAVEPOINT active_record_1
1121
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00]]
1122
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1123
-  (0.0ms) SAVEPOINT active_record_1
1124
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00]]
1125
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1126
-  (0.0ms) SAVEPOINT active_record_1
1127
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:02:26 UTC +00:00]]
1128
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1129
-  (0.0ms) SAVEPOINT active_record_1
1130
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1131
-  (0.2ms) rollback transaction
1132
- Connecting to database specified by database.yml
1133
-  (0.5ms) begin transaction
1134
-  (0.1ms) SAVEPOINT active_record_1
1135
- SQL (38.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00]]
1136
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1137
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
1138
-  (0.2ms) rollback transaction
1139
-  (0.1ms) begin transaction
1140
-  (0.0ms) SAVEPOINT active_record_1
1141
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00]]
1142
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1143
-  (0.0ms) SAVEPOINT active_record_1
1144
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00]]
1145
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1146
-  (0.0ms) SAVEPOINT active_record_1
1147
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00]]
1148
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1149
-  (0.0ms) SAVEPOINT active_record_1
1150
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1151
-  (0.3ms) rollback transaction
1152
-  (0.1ms) begin transaction
1153
-  (0.0ms) SAVEPOINT active_record_1
1154
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00]]
1155
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1156
-  (0.1ms) rollback transaction
1157
-  (0.0ms) begin transaction
1158
-  (0.0ms) SAVEPOINT active_record_1
1159
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00]]
1160
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1161
-  (0.0ms) SAVEPOINT active_record_1
1162
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00]]
1163
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1164
-  (0.0ms) SAVEPOINT active_record_1
1165
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00], ["updated_at", Mon, 09 Dec 2013 02:04:57 UTC +00:00]]
1166
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1167
-  (0.0ms) SAVEPOINT active_record_1
1168
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1169
-  (0.2ms) rollback transaction