has_vcards 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 236634e8dfa949cb89531f2725858bfd419e8306
4
- data.tar.gz: a432b4d548f59bdb00ec3be3f821095335070cbc
3
+ metadata.gz: 6241a271e6b1c126a774cb7180bf0349c1a3d420
4
+ data.tar.gz: d35a5e378b24d2acfc7f897ca5c7a9770fadd6f7
5
5
  SHA512:
6
- metadata.gz: 0631409f4f4a004575bc83ac5794a0751eaf0721a2f5f1f64b1bcebb58b6acfe1bcd04061c9240e685f2f3788b59a382630477ee7de7ef3b80ec82a2a3e9a6c8
7
- data.tar.gz: 2cfa423f7d053f13a6ae83a09b263f306644674a57443aa3f37913594435e7098e2ed1bf7b0536657fd29f1da000b34122239d3e20854bdc1f4aa6d049ae15c3
6
+ metadata.gz: a57c45daa2bc306a4c48f9a0b4fd97ff8ad4330da380a2bd1a3d66c5030d6989be287f0cc324735cdfef3ae1cb81d726d93d32a7eaeacf85415a97836fc16bc0
7
+ data.tar.gz: 3275afa9c69df2b9d40c08ab553871b875c885d18ee79012db805047e3163aac3a23f678a52430c3fa4e33e4b3e5118d484ea1d6bc91ae20ea868f8907c069d5
@@ -78,8 +78,8 @@ module HasVcards
78
78
 
79
79
  # Convenience accessors
80
80
  def full_name
81
- result = read_attribute(:full_name)
82
- result ||= [ family_name, given_name ].compact.join(' ')
81
+ result = read_attribute(:full_name).presence
82
+ result ||= [ family_name.presence, given_name.presence ].compact.join(' ')
83
83
 
84
84
  result
85
85
  end
@@ -2,5 +2,5 @@
2
2
  #
3
3
  # Used for Gem generation.
4
4
  module HasVcards
5
- VERSION = '1.1.1'
5
+ VERSION = '1.1.2'
6
6
  end
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- APP_PATH = File.expand_path('../../config/application', __FILE__)
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
3
  require_relative '../config/boot'
4
4
  require 'rails/commands'
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ require 'pathname'
3
+
4
+ # path to your application root.
5
+ APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
6
+
7
+ Dir.chdir APP_ROOT do
8
+ # This script is a starting point to setup your application.
9
+ # Add necessary setup steps to this file:
10
+
11
+ puts "== Installing dependencies =="
12
+ system "gem install bundler --conservative"
13
+ system "bundle check || bundle install"
14
+
15
+ # puts "\n== Copying sample files =="
16
+ # unless File.exist?("config/database.yml")
17
+ # system "cp config/database.yml.sample config/database.yml"
18
+ # end
19
+
20
+ puts "\n== Preparing database =="
21
+ system "bin/rake db:setup"
22
+
23
+ puts "\n== Removing old logs and tempfiles =="
24
+ system "rm -f log/*"
25
+ system "rm -rf tmp/cache"
26
+
27
+ puts "\n== Restarting application server =="
28
+ system "touch tmp/restart.txt"
29
+ end
@@ -27,6 +27,10 @@ Rails.application.configure do
27
27
  # number of complex assets.
28
28
  config.assets.debug = true
29
29
 
30
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
31
+ # yet still be able to expire them through the digest params.
32
+ config.assets.digest = true
33
+
30
34
  # Adds additional error checking when serving assets at runtime.
31
35
  # Checks for improperly declared sprockets dependencies.
32
36
  # Raises helpful error messages.
@@ -16,11 +16,13 @@ Rails.application.configure do
16
16
 
17
17
  # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
18
  # Add `rack-cache` to your Gemfile before enabling this.
19
- # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
20
21
  # config.action_dispatch.rack_cache = true
21
22
 
22
- # Disable Rails's static asset server (Apache or nginx will already do this).
23
- config.serve_static_assets = false
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
24
26
 
25
27
  # Compress JavaScripts and CSS.
26
28
  config.assets.js_compressor = :uglifier
@@ -29,21 +31,22 @@ Rails.application.configure do
29
31
  # Do not fallback to assets pipeline if a precompiled asset is missed.
30
32
  config.assets.compile = false
31
33
 
32
- # Generate digests for assets URLs.
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
33
36
  config.assets.digest = true
34
37
 
35
- # Version of your assets, change this if you want to expire all your assets.
36
- config.assets.version = '1.0'
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
37
39
 
38
40
  # Specifies the header that your server uses for sending files.
39
- # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
41
43
 
42
44
  # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
45
  # config.force_ssl = true
44
46
 
45
- # Set to :debug to see everything in the log.
46
- config.log_level = :info
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
47
50
 
48
51
  # Prepend all log lines with the following tags.
49
52
  # config.log_tags = [ :subdomain, :uuid ]
@@ -55,11 +58,7 @@ Rails.application.configure do
55
58
  # config.cache_store = :mem_cache_store
56
59
 
57
60
  # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
- # config.action_controller.asset_host = "http://assets.example.com"
59
-
60
- # Precompile additional assets.
61
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
- # config.assets.precompile += %w( search.js )
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
63
62
 
64
63
  # Ignore bad email addresses and do not raise email delivery errors.
65
64
  # Set this to true and configure the email server for immediate delivery to raise delivery errors.
@@ -72,9 +71,6 @@ Rails.application.configure do
72
71
  # Send deprecation notices to registered listeners.
73
72
  config.active_support.deprecation = :notify
74
73
 
75
- # Disable automatic flushing of the log to improve performance.
76
- # config.autoflush_log = false
77
-
78
74
  # Use default logging formatter so that PID and timestamp are not suppressed.
79
75
  config.log_formatter = ::Logger::Formatter.new
80
76
 
@@ -12,8 +12,8 @@ Rails.application.configure do
12
12
  # preloads Rails for running tests, you may have to set it to true.
13
13
  config.eager_load = false
14
14
 
15
- # Configure static asset server for tests with Cache-Control for performance.
16
- config.serve_static_assets = true
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
17
  config.static_cache_control = 'public, max-age=3600'
18
18
 
19
19
  # Show full error reports and disable caching.
@@ -31,6 +31,9 @@ Rails.application.configure do
31
31
  # ActionMailer::Base.deliveries array.
32
32
  config.action_mailer.delivery_method = :test
33
33
 
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
34
37
  # Print deprecation notices to the stderr.
35
38
  config.active_support.deprecation = :stderr
36
39
 
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -1,3 +1,3 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
- Rails.application.config.action_dispatch.cookies_serializer = :json
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
Binary file
@@ -227,3 +227,120 @@ Migrating to DropLenghLimits (20141107181915)
227
227
   (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619121756')
228
228
   (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
229
229
   (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20121113120000')
230
+  (24.6ms) CREATE TABLE "has_vcards_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_office_box" varchar, "extended_address" varchar, "street_address" varchar, "locality" varchar, "region" varchar, "postal_code" varchar, "country_name" varchar, "vcard_id" integer, "address_type" varchar, "created_at" datetime, "updated_at" datetime) 
231
+  (0.1ms) select sqlite_version(*)
232
+  (20.1ms) CREATE INDEX "addresses_vcard_id_index" ON "has_vcards_addresses" ("vcard_id")
233
+  (21.6ms) CREATE TABLE "has_vcards_phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar, "phone_number_type" varchar, "vcard_id" integer, "created_at" datetime, "updated_at" datetime)
234
+  (20.1ms) CREATE INDEX "index_has_vcards_phone_numbers_on_phone_number_type" ON "has_vcards_phone_numbers" ("phone_number_type")
235
+  (0.1ms) SELECT sql
236
+ FROM sqlite_master
237
+ WHERE name='index_has_vcards_phone_numbers_on_phone_number_type' AND type='index'
238
+ UNION ALL
239
+ SELECT sql
240
+ FROM sqlite_temp_master
241
+ WHERE name='index_has_vcards_phone_numbers_on_phone_number_type' AND type='index'
242
+
243
+  (16.3ms) CREATE INDEX "phone_numbers_vcard_id_index" ON "has_vcards_phone_numbers" ("vcard_id")
244
+  (19.6ms) CREATE TABLE "has_vcards_vcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "full_name" varchar, "nickname" varchar, "family_name" varchar, "given_name" varchar, "additional_name" varchar, "honorific_prefix" varchar, "honorific_suffix" varchar, "active" boolean DEFAULT 't', "type" varchar, "reference_id" integer, "reference_type" varchar, "created_at" datetime, "updated_at" datetime)
245
+  (19.9ms) CREATE INDEX "index_has_vcards_vcards_on_active" ON "has_vcards_vcards" ("active")
246
+  (0.1ms) SELECT sql
247
+ FROM sqlite_master
248
+ WHERE name='index_has_vcards_vcards_on_active' AND type='index'
249
+ UNION ALL
250
+ SELECT sql
251
+ FROM sqlite_temp_master
252
+ WHERE name='index_has_vcards_vcards_on_active' AND type='index'
253
+
254
+  (22.1ms) CREATE INDEX "index_has_vcards_vcards_on_reference_id_and_reference_type" ON "has_vcards_vcards" ("reference_id", "reference_type")
255
+  (14.7ms) CREATE TABLE "somethings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)
256
+  (15.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
257
+  (14.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
258
+  (0.1ms) SELECT version FROM "schema_migrations"
259
+  (14.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20141107181915')
260
+  (14.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620151641')
261
+  (25.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120119091225')
262
+  (19.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619101337')
263
+  (14.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20121113120000')
264
+  (14.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619102041')
265
+  (14.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140617113710')
266
+  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120813065226')
267
+  (20.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619121756')
268
+  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
269
+  (12.9ms) CREATE TABLE "has_vcards_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_office_box" varchar, "extended_address" varchar, "street_address" varchar, "locality" varchar, "region" varchar, "postal_code" varchar, "country_name" varchar, "vcard_id" integer, "address_type" varchar, "created_at" datetime, "updated_at" datetime) 
270
+  (0.1ms) select sqlite_version(*)
271
+  (20.5ms) CREATE INDEX "addresses_vcard_id_index" ON "has_vcards_addresses" ("vcard_id")
272
+  (15.7ms) CREATE TABLE "has_vcards_phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar, "phone_number_type" varchar, "vcard_id" integer, "created_at" datetime, "updated_at" datetime)
273
+  (20.2ms) CREATE INDEX "index_has_vcards_phone_numbers_on_phone_number_type" ON "has_vcards_phone_numbers" ("phone_number_type")
274
+  (0.1ms) SELECT sql
275
+ FROM sqlite_master
276
+ WHERE name='index_has_vcards_phone_numbers_on_phone_number_type' AND type='index'
277
+ UNION ALL
278
+ SELECT sql
279
+ FROM sqlite_temp_master
280
+ WHERE name='index_has_vcards_phone_numbers_on_phone_number_type' AND type='index'
281
+
282
+  (10.7ms) CREATE INDEX "phone_numbers_vcard_id_index" ON "has_vcards_phone_numbers" ("vcard_id")
283
+  (20.5ms) CREATE TABLE "has_vcards_vcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "full_name" varchar, "nickname" varchar, "family_name" varchar, "given_name" varchar, "additional_name" varchar, "honorific_prefix" varchar, "honorific_suffix" varchar, "active" boolean DEFAULT 't', "type" varchar, "reference_id" integer, "reference_type" varchar, "created_at" datetime, "updated_at" datetime)
284
+  (8.3ms) CREATE INDEX "index_has_vcards_vcards_on_active" ON "has_vcards_vcards" ("active")
285
+  (0.1ms) SELECT sql
286
+ FROM sqlite_master
287
+ WHERE name='index_has_vcards_vcards_on_active' AND type='index'
288
+ UNION ALL
289
+ SELECT sql
290
+ FROM sqlite_temp_master
291
+ WHERE name='index_has_vcards_vcards_on_active' AND type='index'
292
+
293
+  (28.7ms) CREATE INDEX "index_has_vcards_vcards_on_reference_id_and_reference_type" ON "has_vcards_vcards" ("reference_id", "reference_type")
294
+  (8.0ms) CREATE TABLE "somethings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)
295
+  (20.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
296
+  (19.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
297
+  (0.1ms) SELECT version FROM "schema_migrations"
298
+  (14.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20141107181915')
299
+  (8.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620151641')
300
+  (8.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120119091225')
301
+  (20.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619101337')
302
+  (15.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20121113120000')
303
+  (19.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619102041')
304
+  (13.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140617113710')
305
+  (14.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120813065226')
306
+  (14.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619121756')
307
+  (15.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
308
+  (30.1ms) CREATE TABLE "has_vcards_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_office_box" varchar, "extended_address" varchar, "street_address" varchar, "locality" varchar, "region" varchar, "postal_code" varchar, "country_name" varchar, "vcard_id" integer, "address_type" varchar, "created_at" datetime, "updated_at" datetime) 
309
+  (0.1ms) select sqlite_version(*)
310
+  (15.2ms) CREATE INDEX "addresses_vcard_id_index" ON "has_vcards_addresses" ("vcard_id")
311
+  (10.1ms) CREATE TABLE "has_vcards_phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar, "phone_number_type" varchar, "vcard_id" integer, "created_at" datetime, "updated_at" datetime)
312
+  (8.4ms) CREATE INDEX "index_has_vcards_phone_numbers_on_phone_number_type" ON "has_vcards_phone_numbers" ("phone_number_type")
313
+  (0.1ms) SELECT sql
314
+ FROM sqlite_master
315
+ WHERE name='index_has_vcards_phone_numbers_on_phone_number_type' AND type='index'
316
+ UNION ALL
317
+ SELECT sql
318
+ FROM sqlite_temp_master
319
+ WHERE name='index_has_vcards_phone_numbers_on_phone_number_type' AND type='index'
320
+
321
+  (10.3ms) CREATE INDEX "phone_numbers_vcard_id_index" ON "has_vcards_phone_numbers" ("vcard_id")
322
+  (14.2ms) CREATE TABLE "has_vcards_vcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "full_name" varchar, "nickname" varchar, "family_name" varchar, "given_name" varchar, "additional_name" varchar, "honorific_prefix" varchar, "honorific_suffix" varchar, "active" boolean DEFAULT 't', "type" varchar, "reference_id" integer, "reference_type" varchar, "created_at" datetime, "updated_at" datetime)
323
+  (36.9ms) CREATE INDEX "index_has_vcards_vcards_on_active" ON "has_vcards_vcards" ("active")
324
+  (0.1ms) SELECT sql
325
+ FROM sqlite_master
326
+ WHERE name='index_has_vcards_vcards_on_active' AND type='index'
327
+ UNION ALL
328
+ SELECT sql
329
+ FROM sqlite_temp_master
330
+ WHERE name='index_has_vcards_vcards_on_active' AND type='index'
331
+
332
+  (15.9ms) CREATE INDEX "index_has_vcards_vcards_on_reference_id_and_reference_type" ON "has_vcards_vcards" ("reference_id", "reference_type")
333
+  (13.9ms) CREATE TABLE "somethings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)
334
+  (19.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
335
+  (15.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
336
+  (0.1ms) SELECT version FROM "schema_migrations"
337
+  (8.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20141107181915')
338
+  (14.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620151641')
339
+  (8.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120119091225')
340
+  (8.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619101337')
341
+  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20121113120000')
342
+  (26.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619102041')
343
+  (31.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140617113710')
344
+  (13.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120813065226')
345
+  (8.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140619121756')
346
+  (20.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
@@ -16048,3 +16048,2479 @@ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16048
16048
   (0.0ms) RELEASE SAVEPOINT active_record_1
16049
16049
  HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16050
16050
   (0.1ms) rollback transaction
16051
+  (1.7ms) begin transaction
16052
+  (0.1ms) rollback transaction
16053
+  (0.3ms) begin transaction
16054
+  (0.1ms) rollback transaction
16055
+  (0.0ms) begin transaction
16056
+  (0.1ms) rollback transaction
16057
+  (0.0ms) begin transaction
16058
+  (0.0ms) rollback transaction
16059
+  (0.0ms) begin transaction
16060
+  (0.0ms) rollback transaction
16061
+  (0.0ms) begin transaction
16062
+  (0.1ms) rollback transaction
16063
+  (0.1ms) begin transaction
16064
+  (0.1ms) rollback transaction
16065
+  (0.0ms) begin transaction
16066
+  (0.1ms) rollback transaction
16067
+  (0.1ms) begin transaction
16068
+  (0.0ms) SAVEPOINT active_record_1
16069
+ SQL (0.5ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 06:32:18.317683"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 06:32:18.317683"]]
16070
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 06:32:18.321540"], ["number", "+41 000-111-1"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 06:32:18.321540"], ["vcard_id", 1]]
16071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16072
+  (0.0ms) SAVEPOINT active_record_1
16073
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 06:32:18.322915"], ["number", "+41 000-111-2"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 06:32:18.322915"], ["vcard_id", 1]]
16074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16075
+  (0.1ms) SAVEPOINT active_record_1
16076
+ SQL (0.0ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 06:32:18.323884"], ["number", "+41 000-111-3"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 06:32:18.323884"], ["vcard_id", 1]]
16077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16078
+  (0.1ms) SELECT COUNT(*) FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
16079
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
16080
+  (0.3ms) rollback transaction
16081
+  (0.1ms) begin transaction
16082
+  (0.1ms) rollback transaction
16083
+  (0.0ms) begin transaction
16084
+  (0.0ms) rollback transaction
16085
+  (0.0ms) begin transaction
16086
+  (0.0ms) rollback transaction
16087
+  (0.0ms) begin transaction
16088
+  (0.0ms) rollback transaction
16089
+  (0.0ms) begin transaction
16090
+  (0.0ms) rollback transaction
16091
+  (0.0ms) begin transaction
16092
+  (0.1ms) rollback transaction
16093
+  (0.0ms) begin transaction
16094
+  (0.1ms) rollback transaction
16095
+  (0.0ms) begin transaction
16096
+  (0.0ms) SAVEPOINT active_record_1
16097
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 06:32:18.339239"], ["full_name", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"], ["updated_at", "2016-06-06 06:32:18.339239"]]
16098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16099
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16100
+  (0.1ms) rollback transaction
16101
+  (0.0ms) begin transaction
16102
+  (0.0ms) rollback transaction
16103
+  (0.0ms) begin transaction
16104
+  (0.0ms) rollback transaction
16105
+  (0.0ms) begin transaction
16106
+  (0.0ms) rollback transaction
16107
+  (0.0ms) begin transaction
16108
+  (0.1ms) rollback transaction
16109
+  (0.0ms) begin transaction
16110
+  (0.0ms) rollback transaction
16111
+  (0.0ms) begin transaction
16112
+  (0.0ms) rollback transaction
16113
+  (0.0ms) begin transaction
16114
+  (0.1ms) rollback transaction
16115
+  (0.0ms) begin transaction
16116
+  (0.0ms) SAVEPOINT active_record_1
16117
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 06:32:18.355383"], ["full_name", "quack"], ["updated_at", "2016-06-06 06:32:18.355383"]]
16118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16119
+  (0.0ms) SAVEPOINT active_record_1
16120
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 06:32:18.356587"], ["full_name", "Andi Peter"], ["updated_at", "2016-06-06 06:32:18.356587"]]
16121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16122
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE (full_name LIKE 'quack' OR family_name LIKE 'quack' OR given_name LIKE 'quack' OR nickname LIKE 'quack')
16123
+  (0.1ms) rollback transaction
16124
+  (0.3ms) begin transaction
16125
+  (0.0ms) SAVEPOINT active_record_1
16126
+ SQL (0.5ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.046511"], ["locality", "Test Town"], ["postal_code", "82001"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-06 08:09:58.046511"]]
16127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16128
+  (0.1ms) rollback transaction
16129
+  (0.1ms) begin transaction
16130
+  (0.0ms) SAVEPOINT active_record_1
16131
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.051867"], ["locality", "Test Town"], ["postal_code", "82002"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-06 08:09:58.051867"]]
16132
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16133
+  (0.2ms) rollback transaction
16134
+  (0.1ms) begin transaction
16135
+  (0.1ms) SAVEPOINT active_record_1
16136
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.055096"], ["locality", "Test Town"], ["postal_code", "82003"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-06 08:09:58.055096"]]
16137
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16138
+  (0.1ms) rollback transaction
16139
+  (0.0ms) begin transaction
16140
+  (0.0ms) SAVEPOINT active_record_1
16141
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.063805"], ["locality", "Test Town"], ["postal_code", "82004"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-06 08:09:58.063805"]]
16142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16143
+  (0.1ms) rollback transaction
16144
+  (0.0ms) begin transaction
16145
+  (0.0ms) SAVEPOINT active_record_1
16146
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.065806"], ["locality", "Test Town"], ["postal_code", "82005"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-06 08:09:58.065806"]]
16147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16148
+  (0.1ms) rollback transaction
16149
+  (0.0ms) begin transaction
16150
+  (0.0ms) SAVEPOINT active_record_1
16151
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.067627"], ["locality", "Test Town"], ["postal_code", "82006"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-06 08:09:58.067627"]]
16152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16153
+  (0.1ms) rollback transaction
16154
+  (0.0ms) begin transaction
16155
+  (0.0ms) SAVEPOINT active_record_1
16156
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.069282"], ["locality", "Test Town"], ["postal_code", "82007"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-06 08:09:58.069282"]]
16157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16158
+  (0.1ms) rollback transaction
16159
+  (0.0ms) begin transaction
16160
+  (0.0ms) SAVEPOINT active_record_1
16161
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.078814"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.078814"]]
16162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16163
+  (0.1ms) SAVEPOINT active_record_1
16164
+ SQL (0.3ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.083345"], ["number", "+41 000-111-1"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.083345"], ["vcard_id", 1]]
16165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16166
+  (0.1ms) rollback transaction
16167
+  (0.0ms) begin transaction
16168
+  (0.0ms) SAVEPOINT active_record_1
16169
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.085968"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.085968"]]
16170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16171
+  (0.0ms) SAVEPOINT active_record_1
16172
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.087090"], ["number", "+41 000-111-2"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.087090"], ["vcard_id", 1]]
16173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16174
+  (0.0ms) SAVEPOINT active_record_1
16175
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.088475"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.088475"]]
16176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16177
+  (0.1ms) rollback transaction
16178
+  (0.0ms) begin transaction
16179
+  (0.0ms) SAVEPOINT active_record_1
16180
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.090591"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.090591"]]
16181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16182
+  (0.0ms) SAVEPOINT active_record_1
16183
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.091622"], ["number", "+41 000-111-4"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.091622"], ["vcard_id", 1]]
16184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16185
+  (0.0ms) SAVEPOINT active_record_1
16186
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.092763"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.092763"]]
16187
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16188
+  (0.1ms) rollback transaction
16189
+  (0.0ms) begin transaction
16190
+  (0.0ms) SAVEPOINT active_record_1
16191
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.094335"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.094335"]]
16192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16193
+  (0.0ms) SAVEPOINT active_record_1
16194
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.095285"], ["number", "+41 000-111-6"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.095285"], ["vcard_id", 1]]
16195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16196
+  (0.0ms) SAVEPOINT active_record_1
16197
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.096496"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.096496"]]
16198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16199
+  (0.1ms) rollback transaction
16200
+  (0.0ms) begin transaction
16201
+  (0.0ms) SAVEPOINT active_record_1
16202
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.098335"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.098335"]]
16203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16204
+  (0.0ms) SAVEPOINT active_record_1
16205
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.099338"], ["number", "+41 000-111-8"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.099338"], ["vcard_id", 1]]
16206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16207
+  (0.0ms) SAVEPOINT active_record_1
16208
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.100538"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.100538"]]
16209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16210
+  (0.1ms) rollback transaction
16211
+  (0.0ms) begin transaction
16212
+  (0.0ms) SAVEPOINT active_record_1
16213
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.102134"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.102134"]]
16214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16215
+  (0.0ms) SAVEPOINT active_record_1
16216
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.103151"], ["number", "+41 000-111-9"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.103151"], ["vcard_id", 1]]
16217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16218
+  (0.0ms) SAVEPOINT active_record_1
16219
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.104348"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.104348"]]
16220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16221
+  (0.1ms) rollback transaction
16222
+  (0.0ms) begin transaction
16223
+  (0.0ms) SAVEPOINT active_record_1
16224
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.106069"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.106069"]]
16225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16226
+  (0.0ms) SAVEPOINT active_record_1
16227
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.107104"], ["number", "+41 000-111-10"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.107104"], ["vcard_id", 1]]
16228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16229
+  (0.0ms) SAVEPOINT active_record_1
16230
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.108309"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.108309"]]
16231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16232
+  (0.1ms) rollback transaction
16233
+  (0.0ms) begin transaction
16234
+  (0.0ms) SAVEPOINT active_record_1
16235
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.109875"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.109875"]]
16236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16237
+  (0.0ms) SAVEPOINT active_record_1
16238
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.110861"], ["number", "+41 000-111-11"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.110861"], ["vcard_id", 1]]
16239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16240
+  (0.1ms) SAVEPOINT active_record_1
16241
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.117034"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.117034"]]
16242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16243
+  (0.1ms) rollback transaction
16244
+  (0.0ms) begin transaction
16245
+  (0.0ms) SAVEPOINT active_record_1
16246
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.118755"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.118755"]]
16247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16248
+  (0.0ms) SAVEPOINT active_record_1
16249
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.119784"], ["number", "+41 000-111-12"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.119784"], ["vcard_id", 1]]
16250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16251
+  (0.0ms) SAVEPOINT active_record_1
16252
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.120936"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.120936"]]
16253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16254
+  (0.1ms) rollback transaction
16255
+  (0.0ms) begin transaction
16256
+  (0.0ms) SAVEPOINT active_record_1
16257
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.122550"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.122550"]]
16258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16259
+  (0.0ms) SAVEPOINT active_record_1
16260
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.123492"], ["number", "+41 000-111-13"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.123492"], ["vcard_id", 1]]
16261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16262
+  (0.0ms) SAVEPOINT active_record_1
16263
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.124581"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.124581"]]
16264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16265
+  (0.1ms) rollback transaction
16266
+  (0.0ms) begin transaction
16267
+  (0.0ms) SAVEPOINT active_record_1
16268
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.135392"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.135392"]]
16269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16270
+  (0.0ms) SAVEPOINT active_record_1
16271
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.136618"], ["number", "+41 000-111-14"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.136618"], ["vcard_id", 1]]
16272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16273
+  (0.0ms) SAVEPOINT active_record_1
16274
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.137744"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.137744"]]
16275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16276
+  (0.1ms) rollback transaction
16277
+  (0.0ms) begin transaction
16278
+  (0.0ms) SAVEPOINT active_record_1
16279
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.139575"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.139575"]]
16280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16281
+  (0.0ms) SAVEPOINT active_record_1
16282
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.140610"], ["number", "+41 000-111-15"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.140610"], ["vcard_id", 1]]
16283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16284
+  (0.0ms) SAVEPOINT active_record_1
16285
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.141683"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.141683"]]
16286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16287
+  (0.1ms) rollback transaction
16288
+  (0.0ms) begin transaction
16289
+  (0.0ms) SAVEPOINT active_record_1
16290
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.143212"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.143212"]]
16291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16292
+  (0.0ms) SAVEPOINT active_record_1
16293
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.144192"], ["number", "+41 000-111-16"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.144192"], ["vcard_id", 1]]
16294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16295
+  (0.0ms) SAVEPOINT active_record_1
16296
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.145257"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.145257"]]
16297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16298
+  (0.1ms) rollback transaction
16299
+  (0.0ms) begin transaction
16300
+  (0.0ms) SAVEPOINT active_record_1
16301
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.146968"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.146968"]]
16302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16303
+  (0.0ms) SAVEPOINT active_record_1
16304
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.147921"], ["number", "+41 000-111-17"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.147921"], ["vcard_id", 1]]
16305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16306
+  (0.0ms) SAVEPOINT active_record_1
16307
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.149065"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.149065"]]
16308
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16309
+  (0.1ms) rollback transaction
16310
+  (0.0ms) begin transaction
16311
+  (0.0ms) SAVEPOINT active_record_1
16312
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.151598"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.151598"]]
16313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16314
+  (0.0ms) SAVEPOINT active_record_1
16315
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.152697"], ["number", "+41 000-111-18"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.152697"], ["vcard_id", 1]]
16316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16317
+ Processing by HasVcards::PhoneNumbersController#show as HTML
16318
+ Parameters: {"id"=>"1"}
16319
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
16320
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.0/app/views/application/show.html.haml within layouts/application (0.2ms)
16321
+ Completed 200 OK in 13ms (Views: 10.2ms | ActiveRecord: 0.1ms)
16322
+  (0.1ms) rollback transaction
16323
+  (0.0ms) begin transaction
16324
+  (0.0ms) SAVEPOINT active_record_1
16325
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.170656"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.170656"]]
16326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16327
+  (0.0ms) SAVEPOINT active_record_1
16328
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.171841"], ["number", "+41 000-111-19"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.171841"], ["vcard_id", 1]]
16329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16330
+ Processing by HasVcards::PhoneNumbersController#show as HTML
16331
+ Parameters: {"id"=>"1"}
16332
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
16333
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16334
+  (0.1ms) rollback transaction
16335
+  (0.0ms) begin transaction
16336
+  (0.0ms) SAVEPOINT active_record_1
16337
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.175913"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.175913"]]
16338
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16339
+  (0.0ms) SAVEPOINT active_record_1
16340
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.177055"], ["number", "+41 000-111-20"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.177055"], ["vcard_id", 1]]
16341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16342
+ Processing by HasVcards::PhoneNumbersController#show as HTML
16343
+ Parameters: {"id"=>"1"}
16344
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
16345
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16346
+  (0.1ms) rollback transaction
16347
+  (0.0ms) begin transaction
16348
+  (0.0ms) SAVEPOINT active_record_1
16349
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.181059"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.181059"]]
16350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16351
+  (0.0ms) SAVEPOINT active_record_1
16352
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.182138"], ["number", "+41 000-111-21"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.182138"], ["vcard_id", 1]]
16353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16354
+ Processing by HasVcards::PhoneNumbersController#index as HTML
16355
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
16356
+  (0.1ms) rollback transaction
16357
+  (0.0ms) begin transaction
16358
+  (0.0ms) SAVEPOINT active_record_1
16359
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.187780"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.187780"]]
16360
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16361
+  (0.0ms) SAVEPOINT active_record_1
16362
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.188928"], ["number", "+41 000-111-22"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.188928"], ["vcard_id", 1]]
16363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16364
+ Processing by HasVcards::PhoneNumbersController#index as HTML
16365
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16366
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers"
16367
+  (0.1ms) rollback transaction
16368
+  (0.0ms) begin transaction
16369
+  (0.0ms) SAVEPOINT active_record_1
16370
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.192712"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.192712"]]
16371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16372
+  (0.0ms) SAVEPOINT active_record_1
16373
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.193792"], ["number", "+41 000-111-23"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.193792"], ["vcard_id", 1]]
16374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16375
+ Processing by HasVcards::PhoneNumbersController#index as HTML
16376
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16377
+  (0.1ms) rollback transaction
16378
+  (0.0ms) begin transaction
16379
+  (0.0ms) SAVEPOINT active_record_1
16380
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
16381
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "reference_id", "reference_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.202031"], ["full_name", "Full"], ["reference_id", 1], ["reference_type", "Something"], ["updated_at", "2016-06-06 08:09:58.202031"]]
16382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16383
+  (0.1ms) rollback transaction
16384
+  (0.0ms) begin transaction
16385
+  (0.0ms) SAVEPOINT active_record_1
16386
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
16387
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "reference_id", "reference_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.207948"], ["full_name", "Full"], ["reference_id", 1], ["reference_type", "Something"], ["updated_at", "2016-06-06 08:09:58.207948"]]
16388
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16389
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."reference_id" = ? AND "has_vcards_vcards"."reference_type" = ? [["reference_id", 1], ["reference_type", "Something"]]
16390
+  (0.1ms) rollback transaction
16391
+  (0.0ms) begin transaction
16392
+  (0.0ms) rollback transaction
16393
+  (0.0ms) begin transaction
16394
+  (0.0ms) rollback transaction
16395
+  (0.0ms) begin transaction
16396
+  (0.0ms) rollback transaction
16397
+  (0.0ms) begin transaction
16398
+  (0.0ms) rollback transaction
16399
+  (0.0ms) begin transaction
16400
+  (0.1ms) SAVEPOINT active_record_1
16401
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.216327"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.216327"]]
16402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16403
+ Processing by HasVcards::VcardsController#show as HTML
16404
+ Parameters: {"id"=>"1"}
16405
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16406
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
16407
+  (0.1ms) rollback transaction
16408
+  (0.0ms) begin transaction
16409
+  (0.0ms) SAVEPOINT active_record_1
16410
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.222455"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.222455"]]
16411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16412
+ Processing by HasVcards::VcardsController#show as HTML
16413
+ Parameters: {"id"=>"1"}
16414
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16415
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16416
+  (0.1ms) rollback transaction
16417
+  (0.0ms) begin transaction
16418
+  (0.0ms) SAVEPOINT active_record_1
16419
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.226348"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.226348"]]
16420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16421
+ Processing by HasVcards::VcardsController#show as HTML
16422
+ Parameters: {"id"=>"1"}
16423
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16424
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16425
+  (0.1ms) rollback transaction
16426
+  (0.0ms) begin transaction
16427
+  (0.0ms) SAVEPOINT active_record_1
16428
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.230185"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.230185"]]
16429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16430
+ Processing by HasVcards::VcardsController#index as HTML
16431
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
16432
+  (0.1ms) rollback transaction
16433
+  (0.0ms) begin transaction
16434
+  (0.0ms) SAVEPOINT active_record_1
16435
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.234180"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.234180"]]
16436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16437
+ Processing by HasVcards::VcardsController#index as HTML
16438
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16439
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards"
16440
+  (0.1ms) rollback transaction
16441
+  (0.0ms) begin transaction
16442
+  (0.0ms) SAVEPOINT active_record_1
16443
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.237899"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.237899"]]
16444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16445
+ Processing by HasVcards::VcardsController#index as HTML
16446
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16447
+  (0.1ms) rollback transaction
16448
+  (0.0ms) begin transaction
16449
+  (0.0ms) rollback transaction
16450
+  (0.1ms) begin transaction
16451
+  (0.0ms) rollback transaction
16452
+  (0.0ms) begin transaction
16453
+  (0.0ms) rollback transaction
16454
+  (0.0ms) begin transaction
16455
+  (0.1ms) rollback transaction
16456
+  (0.0ms) begin transaction
16457
+  (0.1ms) rollback transaction
16458
+  (0.0ms) begin transaction
16459
+  (0.0ms) rollback transaction
16460
+  (0.0ms) begin transaction
16461
+  (0.0ms) rollback transaction
16462
+  (0.0ms) begin transaction
16463
+  (0.0ms) SAVEPOINT active_record_1
16464
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.253405"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-06 08:09:58.253405"]]
16465
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.254323"], ["number", "+41 000-111-24"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.254323"], ["vcard_id", 1]]
16466
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16467
+  (0.0ms) SAVEPOINT active_record_1
16468
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.255436"], ["number", "+41 000-111-25"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.255436"], ["vcard_id", 1]]
16469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16470
+  (0.0ms) SAVEPOINT active_record_1
16471
+ SQL (0.0ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-06 08:09:58.256363"], ["number", "+41 000-111-26"], ["phone_number_type", "phone"], ["updated_at", "2016-06-06 08:09:58.256363"], ["vcard_id", 1]]
16472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16473
+  (0.1ms) SELECT COUNT(*) FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
16474
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
16475
+  (0.1ms) rollback transaction
16476
+  (0.0ms) begin transaction
16477
+  (0.1ms) rollback transaction
16478
+  (0.0ms) begin transaction
16479
+  (0.1ms) rollback transaction
16480
+  (0.0ms) begin transaction
16481
+  (0.0ms) rollback transaction
16482
+  (0.0ms) begin transaction
16483
+  (0.0ms) SAVEPOINT active_record_1
16484
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.263219"], ["full_name", "quack"], ["updated_at", "2016-06-06 08:09:58.263219"]]
16485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16486
+  (0.0ms) SAVEPOINT active_record_1
16487
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.264449"], ["full_name", "Andi Peter"], ["updated_at", "2016-06-06 08:09:58.264449"]]
16488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16489
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE (full_name LIKE 'quack' OR family_name LIKE 'quack' OR given_name LIKE 'quack' OR nickname LIKE 'quack')
16490
+  (0.1ms) rollback transaction
16491
+  (0.0ms) begin transaction
16492
+  (0.0ms) rollback transaction
16493
+  (0.0ms) begin transaction
16494
+  (0.0ms) rollback transaction
16495
+  (0.0ms) begin transaction
16496
+  (0.0ms) rollback transaction
16497
+  (0.0ms) begin transaction
16498
+  (0.0ms) rollback transaction
16499
+  (0.0ms) begin transaction
16500
+  (0.0ms) rollback transaction
16501
+  (0.0ms) begin transaction
16502
+  (0.0ms) SAVEPOINT active_record_1
16503
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-06 08:09:58.269788"], ["full_name", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"], ["updated_at", "2016-06-06 08:09:58.269788"]]
16504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16505
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16506
+  (0.1ms) rollback transaction
16507
+  (0.0ms) begin transaction
16508
+  (0.0ms) rollback transaction
16509
+  (0.0ms) begin transaction
16510
+  (0.0ms) rollback transaction
16511
+  (0.0ms) begin transaction
16512
+  (0.0ms) rollback transaction
16513
+  (0.0ms) begin transaction
16514
+  (0.0ms) rollback transaction
16515
+  (0.0ms) begin transaction
16516
+  (0.0ms) rollback transaction
16517
+  (0.0ms) begin transaction
16518
+  (0.0ms) rollback transaction
16519
+  (0.8ms) begin transaction
16520
+  (0.0ms) SAVEPOINT active_record_1
16521
+ SQL (0.6ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.682181"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.682181"]]
16522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16523
+ Processing by HasVcards::VcardsController#index as HTML
16524
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.3ms)
16525
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
16526
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards"
16527
+  (0.1ms) rollback transaction
16528
+  (0.0ms) begin transaction
16529
+  (0.0ms) SAVEPOINT active_record_1
16530
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.706414"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.706414"]]
16531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16532
+ Processing by HasVcards::VcardsController#index as HTML
16533
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
16534
+  (0.1ms) rollback transaction
16535
+  (0.1ms) begin transaction
16536
+  (0.0ms) SAVEPOINT active_record_1
16537
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.710072"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.710072"]]
16538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16539
+ Processing by HasVcards::VcardsController#index as HTML
16540
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
16541
+  (0.1ms) rollback transaction
16542
+  (0.0ms) begin transaction
16543
+  (0.0ms) SAVEPOINT active_record_1
16544
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.713879"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.713879"]]
16545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16546
+ Processing by HasVcards::VcardsController#show as HTML
16547
+ Parameters: {"id"=>"1"}
16548
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16549
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.1ms)
16550
+  (0.1ms) rollback transaction
16551
+  (0.0ms) begin transaction
16552
+  (0.1ms) SAVEPOINT active_record_1
16553
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.721246"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.721246"]]
16554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16555
+ Processing by HasVcards::VcardsController#show as HTML
16556
+ Parameters: {"id"=>"1"}
16557
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16558
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
16559
+  (0.1ms) rollback transaction
16560
+  (0.0ms) begin transaction
16561
+  (0.0ms) SAVEPOINT active_record_1
16562
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.725246"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.725246"]]
16563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16564
+ Processing by HasVcards::VcardsController#show as HTML
16565
+ Parameters: {"id"=>"1"}
16566
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16567
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
16568
+  (0.1ms) rollback transaction
16569
+  (0.0ms) begin transaction
16570
+  (0.1ms) rollback transaction
16571
+  (0.0ms) begin transaction
16572
+  (0.0ms) rollback transaction
16573
+  (0.0ms) begin transaction
16574
+  (0.1ms) rollback transaction
16575
+  (0.0ms) begin transaction
16576
+  (0.1ms) rollback transaction
16577
+  (0.0ms) begin transaction
16578
+  (0.0ms) rollback transaction
16579
+  (0.0ms) begin transaction
16580
+  (0.0ms) SAVEPOINT active_record_1
16581
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.770973"], ["full_name", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"], ["updated_at", "2016-06-13 20:09:15.770973"]]
16582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16583
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
16584
+  (0.1ms) rollback transaction
16585
+  (0.3ms) begin transaction
16586
+  (0.0ms) rollback transaction
16587
+  (0.0ms) begin transaction
16588
+  (0.0ms) rollback transaction
16589
+  (0.0ms) begin transaction
16590
+  (0.0ms) rollback transaction
16591
+  (0.0ms) begin transaction
16592
+  (0.0ms) rollback transaction
16593
+  (0.0ms) begin transaction
16594
+  (0.0ms) rollback transaction
16595
+  (0.0ms) begin transaction
16596
+  (0.0ms) rollback transaction
16597
+  (0.0ms) begin transaction
16598
+  (0.1ms) rollback transaction
16599
+  (0.0ms) begin transaction
16600
+  (0.0ms) rollback transaction
16601
+  (0.0ms) begin transaction
16602
+  (0.1ms) rollback transaction
16603
+  (0.0ms) begin transaction
16604
+  (0.0ms) SAVEPOINT active_record_1
16605
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.801427"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.801427"]]
16606
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.802232"], ["number", "+41 000-111-1"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.802232"], ["vcard_id", 1]]
16607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16608
+  (0.0ms) SAVEPOINT active_record_1
16609
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.803816"], ["number", "+41 000-111-2"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.803816"], ["vcard_id", 1]]
16610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16611
+  (0.0ms) SAVEPOINT active_record_1
16612
+ SQL (0.0ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.804963"], ["number", "+41 000-111-3"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.804963"], ["vcard_id", 1]]
16613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16614
+  (0.1ms) SELECT COUNT(*) FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
16615
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
16616
+  (0.1ms) rollback transaction
16617
+  (0.2ms) begin transaction
16618
+  (0.0ms) rollback transaction
16619
+  (0.0ms) begin transaction
16620
+  (0.0ms) rollback transaction
16621
+  (0.0ms) begin transaction
16622
+  (0.0ms) rollback transaction
16623
+  (0.0ms) begin transaction
16624
+  (0.0ms) rollback transaction
16625
+  (0.0ms) begin transaction
16626
+  (0.0ms) rollback transaction
16627
+  (0.0ms) begin transaction
16628
+  (0.0ms) rollback transaction
16629
+  (0.0ms) begin transaction
16630
+  (0.2ms) rollback transaction
16631
+  (0.0ms) begin transaction
16632
+  (0.0ms) SAVEPOINT active_record_1
16633
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.816416"], ["full_name", "quack"], ["updated_at", "2016-06-13 20:09:15.816416"]]
16634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16635
+  (0.3ms) SAVEPOINT active_record_1
16636
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.818086"], ["full_name", "Andi Peter"], ["updated_at", "2016-06-13 20:09:15.818086"]]
16637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16638
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE (full_name LIKE 'quack' OR family_name LIKE 'quack' OR given_name LIKE 'quack' OR nickname LIKE 'quack')
16639
+  (0.1ms) rollback transaction
16640
+  (0.0ms) begin transaction
16641
+  (0.0ms) SAVEPOINT active_record_1
16642
+ SQL (0.4ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.821029"], ["locality", "Test Town"], ["postal_code", "82001"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:09:15.821029"]]
16643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16644
+  (0.1ms) rollback transaction
16645
+  (0.0ms) begin transaction
16646
+  (0.0ms) SAVEPOINT active_record_1
16647
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.823360"], ["locality", "Test Town"], ["postal_code", "82002"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:09:15.823360"]]
16648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16649
+  (0.1ms) rollback transaction
16650
+  (0.0ms) begin transaction
16651
+  (0.0ms) SAVEPOINT active_record_1
16652
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.826525"], ["locality", "Test Town"], ["postal_code", "82003"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:09:15.826525"]]
16653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16654
+  (0.1ms) rollback transaction
16655
+  (0.0ms) begin transaction
16656
+  (0.0ms) SAVEPOINT active_record_1
16657
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.829117"], ["locality", "Test Town"], ["postal_code", "82004"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:09:15.829117"]]
16658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16659
+  (0.1ms) rollback transaction
16660
+  (0.0ms) begin transaction
16661
+  (0.0ms) SAVEPOINT active_record_1
16662
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.831476"], ["locality", "Test Town"], ["postal_code", "82005"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:09:15.831476"]]
16663
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16664
+  (0.1ms) rollback transaction
16665
+  (0.0ms) begin transaction
16666
+  (0.0ms) SAVEPOINT active_record_1
16667
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.834171"], ["locality", "Test Town"], ["postal_code", "82006"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:09:15.834171"]]
16668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16669
+  (0.1ms) rollback transaction
16670
+  (0.0ms) begin transaction
16671
+  (0.0ms) SAVEPOINT active_record_1
16672
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.836993"], ["locality", "Test Town"], ["postal_code", "82007"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:09:15.836993"]]
16673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16674
+  (0.1ms) rollback transaction
16675
+  (0.0ms) begin transaction
16676
+  (0.0ms) SAVEPOINT active_record_1
16677
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.840773"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.840773"]]
16678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16679
+  (0.0ms) SAVEPOINT active_record_1
16680
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.841974"], ["number", "+41 000-111-4"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.841974"], ["vcard_id", 1]]
16681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16682
+ Processing by HasVcards::PhoneNumbersController#index as HTML
16683
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
16684
+ HasVcards::PhoneNumber Load (0.4ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers"
16685
+  (0.1ms) rollback transaction
16686
+  (0.0ms) begin transaction
16687
+  (0.0ms) SAVEPOINT active_record_1
16688
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.850871"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.850871"]]
16689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16690
+  (0.0ms) SAVEPOINT active_record_1
16691
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.852417"], ["number", "+41 000-111-5"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.852417"], ["vcard_id", 1]]
16692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16693
+ Processing by HasVcards::PhoneNumbersController#index as HTML
16694
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
16695
+  (0.1ms) rollback transaction
16696
+  (0.0ms) begin transaction
16697
+  (0.0ms) SAVEPOINT active_record_1
16698
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.856604"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.856604"]]
16699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16700
+  (0.0ms) SAVEPOINT active_record_1
16701
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.857778"], ["number", "+41 000-111-6"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.857778"], ["vcard_id", 1]]
16702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16703
+ Processing by HasVcards::PhoneNumbersController#index as HTML
16704
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
16705
+  (0.1ms) rollback transaction
16706
+  (0.0ms) begin transaction
16707
+  (0.0ms) SAVEPOINT active_record_1
16708
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.863055"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.863055"]]
16709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16710
+  (0.2ms) SAVEPOINT active_record_1
16711
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.864316"], ["number", "+41 000-111-7"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.864316"], ["vcard_id", 1]]
16712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16713
+ Processing by HasVcards::PhoneNumbersController#show as HTML
16714
+ Parameters: {"id"=>"1"}
16715
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
16716
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms)
16717
+  (0.1ms) rollback transaction
16718
+  (0.0ms) begin transaction
16719
+  (0.1ms) SAVEPOINT active_record_1
16720
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.877494"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.877494"]]
16721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16722
+  (0.0ms) SAVEPOINT active_record_1
16723
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.878643"], ["number", "+41 000-111-8"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.878643"], ["vcard_id", 1]]
16724
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16725
+ Processing by HasVcards::PhoneNumbersController#show as HTML
16726
+ Parameters: {"id"=>"1"}
16727
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
16728
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
16729
+  (0.1ms) rollback transaction
16730
+  (0.0ms) begin transaction
16731
+  (0.0ms) SAVEPOINT active_record_1
16732
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.882975"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.882975"]]
16733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16734
+  (0.0ms) SAVEPOINT active_record_1
16735
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.884131"], ["number", "+41 000-111-9"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.884131"], ["vcard_id", 1]]
16736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16737
+ Processing by HasVcards::PhoneNumbersController#show as HTML
16738
+ Parameters: {"id"=>"1"}
16739
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
16740
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
16741
+  (0.1ms) rollback transaction
16742
+  (0.0ms) begin transaction
16743
+  (0.0ms) SAVEPOINT active_record_1
16744
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
16745
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "reference_id", "reference_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.890893"], ["full_name", "Full"], ["reference_id", 1], ["reference_type", "Something"], ["updated_at", "2016-06-13 20:09:15.890893"]]
16746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16747
+  (0.1ms) rollback transaction
16748
+  (0.0ms) begin transaction
16749
+  (0.0ms) SAVEPOINT active_record_1
16750
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
16751
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "reference_id", "reference_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.893854"], ["full_name", "Full"], ["reference_id", 1], ["reference_type", "Something"], ["updated_at", "2016-06-13 20:09:15.893854"]]
16752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16753
+ HasVcards::Vcard Load (0.2ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."reference_id" = ? AND "has_vcards_vcards"."reference_type" = ? [["reference_id", 1], ["reference_type", "Something"]]
16754
+  (0.1ms) rollback transaction
16755
+  (0.0ms) begin transaction
16756
+  (0.0ms) rollback transaction
16757
+  (0.0ms) begin transaction
16758
+  (0.0ms) rollback transaction
16759
+  (0.0ms) begin transaction
16760
+  (0.0ms) rollback transaction
16761
+  (0.0ms) begin transaction
16762
+  (0.0ms) rollback transaction
16763
+  (0.0ms) begin transaction
16764
+  (0.0ms) SAVEPOINT active_record_1
16765
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.901683"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.901683"]]
16766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16767
+  (0.0ms) SAVEPOINT active_record_1
16768
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.902835"], ["number", "+41 000-111-10"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.902835"], ["vcard_id", 1]]
16769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16770
+  (0.1ms) rollback transaction
16771
+  (0.0ms) begin transaction
16772
+  (0.0ms) SAVEPOINT active_record_1
16773
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.904786"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.904786"]]
16774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16775
+  (0.0ms) SAVEPOINT active_record_1
16776
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.905783"], ["number", "+41 000-111-11"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.905783"], ["vcard_id", 1]]
16777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16778
+  (0.0ms) SAVEPOINT active_record_1
16779
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.906882"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.906882"]]
16780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16781
+  (0.1ms) rollback transaction
16782
+  (0.0ms) begin transaction
16783
+  (0.0ms) SAVEPOINT active_record_1
16784
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.908523"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.908523"]]
16785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16786
+  (0.0ms) SAVEPOINT active_record_1
16787
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.909538"], ["number", "+41 000-111-12"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.909538"], ["vcard_id", 1]]
16788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16789
+  (0.0ms) SAVEPOINT active_record_1
16790
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.910629"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.910629"]]
16791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16792
+  (0.1ms) rollback transaction
16793
+  (0.0ms) begin transaction
16794
+  (0.0ms) SAVEPOINT active_record_1
16795
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.912263"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.912263"]]
16796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16797
+  (0.0ms) SAVEPOINT active_record_1
16798
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.913439"], ["number", "+41 000-111-13"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.913439"], ["vcard_id", 1]]
16799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16800
+  (0.0ms) SAVEPOINT active_record_1
16801
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.914600"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.914600"]]
16802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16803
+  (0.1ms) rollback transaction
16804
+  (0.0ms) begin transaction
16805
+  (0.0ms) SAVEPOINT active_record_1
16806
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.916348"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.916348"]]
16807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16808
+  (0.0ms) SAVEPOINT active_record_1
16809
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.917375"], ["number", "+41 000-111-14"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.917375"], ["vcard_id", 1]]
16810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16811
+  (0.0ms) SAVEPOINT active_record_1
16812
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.918413"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.918413"]]
16813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16814
+  (0.1ms) rollback transaction
16815
+  (0.0ms) begin transaction
16816
+  (0.0ms) SAVEPOINT active_record_1
16817
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.920103"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.920103"]]
16818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16819
+  (0.0ms) SAVEPOINT active_record_1
16820
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.921040"], ["number", "+41 000-111-15"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.921040"], ["vcard_id", 1]]
16821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16822
+  (0.0ms) SAVEPOINT active_record_1
16823
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.922225"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.922225"]]
16824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16825
+  (0.1ms) rollback transaction
16826
+  (0.0ms) begin transaction
16827
+  (0.0ms) SAVEPOINT active_record_1
16828
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.924354"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.924354"]]
16829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16830
+  (0.0ms) SAVEPOINT active_record_1
16831
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.925400"], ["number", "+41 000-111-16"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.925400"], ["vcard_id", 1]]
16832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16833
+  (0.0ms) SAVEPOINT active_record_1
16834
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.926508"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.926508"]]
16835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16836
+  (0.1ms) rollback transaction
16837
+  (0.0ms) begin transaction
16838
+  (0.1ms) SAVEPOINT active_record_1
16839
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.928563"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.928563"]]
16840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16841
+  (0.0ms) SAVEPOINT active_record_1
16842
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.929727"], ["number", "+41 000-111-17"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.929727"], ["vcard_id", 1]]
16843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16844
+  (0.0ms) SAVEPOINT active_record_1
16845
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.930949"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.930949"]]
16846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16847
+  (0.1ms) rollback transaction
16848
+  (0.0ms) begin transaction
16849
+  (0.0ms) SAVEPOINT active_record_1
16850
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.932895"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.932895"]]
16851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16852
+  (0.0ms) SAVEPOINT active_record_1
16853
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.933946"], ["number", "+41 000-111-18"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.933946"], ["vcard_id", 1]]
16854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16855
+  (0.0ms) SAVEPOINT active_record_1
16856
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.935113"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.935113"]]
16857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16858
+  (0.1ms) rollback transaction
16859
+  (0.0ms) begin transaction
16860
+  (0.0ms) SAVEPOINT active_record_1
16861
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.936751"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.936751"]]
16862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16863
+  (0.0ms) SAVEPOINT active_record_1
16864
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.937762"], ["number", "+41 000-111-19"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.937762"], ["vcard_id", 1]]
16865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16866
+  (0.0ms) SAVEPOINT active_record_1
16867
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.938858"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.938858"]]
16868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16869
+  (0.1ms) rollback transaction
16870
+  (0.0ms) begin transaction
16871
+  (0.0ms) SAVEPOINT active_record_1
16872
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.940862"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.940862"]]
16873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16874
+  (0.0ms) SAVEPOINT active_record_1
16875
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.941899"], ["number", "+41 000-111-20"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.941899"], ["vcard_id", 1]]
16876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16877
+  (0.0ms) SAVEPOINT active_record_1
16878
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.942972"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.942972"]]
16879
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16880
+  (0.1ms) rollback transaction
16881
+  (0.0ms) begin transaction
16882
+  (0.0ms) SAVEPOINT active_record_1
16883
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.945006"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.945006"]]
16884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16885
+  (0.0ms) SAVEPOINT active_record_1
16886
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.946034"], ["number", "+41 000-111-21"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.946034"], ["vcard_id", 1]]
16887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16888
+  (0.0ms) SAVEPOINT active_record_1
16889
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.947128"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.947128"]]
16890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16891
+  (0.1ms) rollback transaction
16892
+  (0.0ms) begin transaction
16893
+  (0.0ms) SAVEPOINT active_record_1
16894
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.949020"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.949020"]]
16895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16896
+  (0.0ms) SAVEPOINT active_record_1
16897
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.949982"], ["number", "+41 000-111-23"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.949982"], ["vcard_id", 1]]
16898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16899
+  (0.0ms) SAVEPOINT active_record_1
16900
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.951037"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.951037"]]
16901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16902
+  (0.1ms) rollback transaction
16903
+  (0.0ms) begin transaction
16904
+  (0.0ms) SAVEPOINT active_record_1
16905
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.952669"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.952669"]]
16906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16907
+  (0.0ms) SAVEPOINT active_record_1
16908
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:09:15.953635"], ["number", "+41 000-111-25"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:09:15.953635"], ["vcard_id", 1]]
16909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16910
+  (0.0ms) SAVEPOINT active_record_1
16911
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:09:15.954662"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:09:15.954662"]]
16912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16913
+  (0.1ms) rollback transaction
16914
+  (0.3ms) begin transaction
16915
+  (0.1ms) SAVEPOINT active_record_1
16916
+ SQL (0.4ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.222338"], ["locality", "Test Town"], ["postal_code", "82001"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:19:42.222338"]]
16917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16918
+  (0.1ms) rollback transaction
16919
+  (0.0ms) begin transaction
16920
+  (0.0ms) SAVEPOINT active_record_1
16921
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.227217"], ["locality", "Test Town"], ["postal_code", "82002"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:19:42.227217"]]
16922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16923
+  (0.1ms) rollback transaction
16924
+  (0.0ms) begin transaction
16925
+  (0.0ms) SAVEPOINT active_record_1
16926
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.241868"], ["locality", "Test Town"], ["postal_code", "82003"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:19:42.241868"]]
16927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16928
+  (0.1ms) rollback transaction
16929
+  (0.0ms) begin transaction
16930
+  (0.0ms) SAVEPOINT active_record_1
16931
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.243905"], ["locality", "Test Town"], ["postal_code", "82004"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:19:42.243905"]]
16932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16933
+  (0.1ms) rollback transaction
16934
+  (0.0ms) begin transaction
16935
+  (0.0ms) SAVEPOINT active_record_1
16936
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.246077"], ["locality", "Test Town"], ["postal_code", "82005"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:19:42.246077"]]
16937
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16938
+  (0.1ms) rollback transaction
16939
+  (0.0ms) begin transaction
16940
+  (0.0ms) SAVEPOINT active_record_1
16941
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.248999"], ["locality", "Test Town"], ["postal_code", "82006"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:19:42.248999"]]
16942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16943
+  (0.1ms) rollback transaction
16944
+  (0.0ms) begin transaction
16945
+  (0.0ms) SAVEPOINT active_record_1
16946
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("created_at", "locality", "postal_code", "street_address", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.250956"], ["locality", "Test Town"], ["postal_code", "82007"], ["street_address", "312 Test Street"], ["updated_at", "2016-06-13 20:19:42.250956"]]
16947
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16948
+  (0.1ms) rollback transaction
16949
+  (0.0ms) begin transaction
16950
+  (0.1ms) SAVEPOINT active_record_1
16951
+ SQL (0.4ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.261843"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.261843"]]
16952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16953
+  (0.1ms) SAVEPOINT active_record_1
16954
+ SQL (0.3ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.267022"], ["number", "+41 000-111-1"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.267022"], ["vcard_id", 1]]
16955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16956
+  (0.1ms) rollback transaction
16957
+  (0.0ms) begin transaction
16958
+  (0.0ms) SAVEPOINT active_record_1
16959
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.270138"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.270138"]]
16960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16961
+  (0.0ms) SAVEPOINT active_record_1
16962
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.271608"], ["number", "+41 000-111-2"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.271608"], ["vcard_id", 1]]
16963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16964
+  (0.0ms) SAVEPOINT active_record_1
16965
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.273008"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.273008"]]
16966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16967
+  (0.1ms) rollback transaction
16968
+  (0.0ms) begin transaction
16969
+  (0.0ms) SAVEPOINT active_record_1
16970
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.275462"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.275462"]]
16971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16972
+  (0.0ms) SAVEPOINT active_record_1
16973
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.276748"], ["number", "+41 000-111-4"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.276748"], ["vcard_id", 1]]
16974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16975
+  (0.0ms) SAVEPOINT active_record_1
16976
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.278109"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.278109"]]
16977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16978
+  (0.1ms) rollback transaction
16979
+  (0.0ms) begin transaction
16980
+  (0.0ms) SAVEPOINT active_record_1
16981
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.280144"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.280144"]]
16982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16983
+  (0.0ms) SAVEPOINT active_record_1
16984
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.281278"], ["number", "+41 000-111-6"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.281278"], ["vcard_id", 1]]
16985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16986
+  (0.1ms) SAVEPOINT active_record_1
16987
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.282540"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.282540"]]
16988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16989
+  (0.1ms) rollback transaction
16990
+  (0.0ms) begin transaction
16991
+  (0.0ms) SAVEPOINT active_record_1
16992
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.284908"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.284908"]]
16993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16994
+  (0.0ms) SAVEPOINT active_record_1
16995
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.286164"], ["number", "+41 000-111-8"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.286164"], ["vcard_id", 1]]
16996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16997
+  (0.0ms) SAVEPOINT active_record_1
16998
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.287506"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.287506"]]
16999
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17000
+  (0.1ms) rollback transaction
17001
+  (0.1ms) begin transaction
17002
+  (0.0ms) SAVEPOINT active_record_1
17003
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.289629"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.289629"]]
17004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17005
+  (0.0ms) SAVEPOINT active_record_1
17006
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.290868"], ["number", "+41 000-111-9"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.290868"], ["vcard_id", 1]]
17007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17008
+  (0.0ms) SAVEPOINT active_record_1
17009
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.292206"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.292206"]]
17010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17011
+  (0.1ms) rollback transaction
17012
+  (0.1ms) begin transaction
17013
+  (0.0ms) SAVEPOINT active_record_1
17014
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.303857"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.303857"]]
17015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17016
+  (0.0ms) SAVEPOINT active_record_1
17017
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.305218"], ["number", "+41 000-111-10"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.305218"], ["vcard_id", 1]]
17018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17019
+  (0.1ms) SAVEPOINT active_record_1
17020
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.307036"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.307036"]]
17021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17022
+  (0.1ms) rollback transaction
17023
+  (0.0ms) begin transaction
17024
+  (0.0ms) SAVEPOINT active_record_1
17025
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.309646"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.309646"]]
17026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17027
+  (0.0ms) SAVEPOINT active_record_1
17028
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.310932"], ["number", "+41 000-111-11"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.310932"], ["vcard_id", 1]]
17029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17030
+  (0.0ms) SAVEPOINT active_record_1
17031
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.312303"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.312303"]]
17032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17033
+  (0.1ms) rollback transaction
17034
+  (0.0ms) begin transaction
17035
+  (0.0ms) SAVEPOINT active_record_1
17036
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.316214"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.316214"]]
17037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17038
+  (0.0ms) SAVEPOINT active_record_1
17039
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.317840"], ["number", "+41 000-111-12"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.317840"], ["vcard_id", 1]]
17040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17041
+  (0.0ms) SAVEPOINT active_record_1
17042
+ SQL (0.4ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.319864"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.319864"]]
17043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17044
+  (0.1ms) rollback transaction
17045
+  (0.0ms) begin transaction
17046
+  (0.0ms) SAVEPOINT active_record_1
17047
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.323138"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.323138"]]
17048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17049
+  (0.0ms) SAVEPOINT active_record_1
17050
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.324513"], ["number", "+41 000-111-13"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.324513"], ["vcard_id", 1]]
17051
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17052
+  (0.0ms) SAVEPOINT active_record_1
17053
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.326367"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.326367"]]
17054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17055
+  (0.1ms) rollback transaction
17056
+  (0.0ms) begin transaction
17057
+  (0.0ms) SAVEPOINT active_record_1
17058
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.329090"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.329090"]]
17059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17060
+  (0.0ms) SAVEPOINT active_record_1
17061
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.330615"], ["number", "+41 000-111-14"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.330615"], ["vcard_id", 1]]
17062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17063
+  (0.0ms) SAVEPOINT active_record_1
17064
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.332741"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.332741"]]
17065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17066
+  (0.1ms) rollback transaction
17067
+  (0.0ms) begin transaction
17068
+  (0.0ms) SAVEPOINT active_record_1
17069
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.335929"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.335929"]]
17070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17071
+  (0.0ms) SAVEPOINT active_record_1
17072
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.337142"], ["number", "+41 000-111-15"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.337142"], ["vcard_id", 1]]
17073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17074
+  (0.0ms) SAVEPOINT active_record_1
17075
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.339205"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.339205"]]
17076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17077
+  (0.1ms) rollback transaction
17078
+  (0.6ms) begin transaction
17079
+  (0.3ms) SAVEPOINT active_record_1
17080
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.342818"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.342818"]]
17081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17082
+  (0.0ms) SAVEPOINT active_record_1
17083
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.344468"], ["number", "+41 000-111-16"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.344468"], ["vcard_id", 1]]
17084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17085
+  (0.0ms) SAVEPOINT active_record_1
17086
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.346503"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.346503"]]
17087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17088
+  (0.1ms) rollback transaction
17089
+  (0.1ms) begin transaction
17090
+  (0.0ms) SAVEPOINT active_record_1
17091
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.349670"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.349670"]]
17092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17093
+  (0.0ms) SAVEPOINT active_record_1
17094
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.351412"], ["number", "+41 000-111-17"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.351412"], ["vcard_id", 1]]
17095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17096
+  (0.0ms) SAVEPOINT active_record_1
17097
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.353554"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.353554"]]
17098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17099
+  (0.1ms) rollback transaction
17100
+  (0.0ms) begin transaction
17101
+  (0.0ms) SAVEPOINT active_record_1
17102
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.358187"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.358187"]]
17103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17104
+  (0.0ms) SAVEPOINT active_record_1
17105
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.359424"], ["number", "+41 000-111-18"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.359424"], ["vcard_id", 1]]
17106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17107
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17108
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.2ms)
17109
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
17110
+  (0.1ms) rollback transaction
17111
+  (0.0ms) begin transaction
17112
+  (0.0ms) SAVEPOINT active_record_1
17113
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.376764"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.376764"]]
17114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17115
+  (0.0ms) SAVEPOINT active_record_1
17116
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.378486"], ["number", "+41 000-111-19"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.378486"], ["vcard_id", 1]]
17117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17118
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17119
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
17120
+ HasVcards::PhoneNumber Load (0.3ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers"
17121
+  (0.1ms) rollback transaction
17122
+  (0.0ms) begin transaction
17123
+  (0.0ms) SAVEPOINT active_record_1
17124
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.385138"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.385138"]]
17125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17126
+  (0.0ms) SAVEPOINT active_record_1
17127
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.386613"], ["number", "+41 000-111-20"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.386613"], ["vcard_id", 1]]
17128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17129
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17130
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
17131
+  (0.1ms) rollback transaction
17132
+  (0.0ms) begin transaction
17133
+  (0.0ms) SAVEPOINT active_record_1
17134
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.392611"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.392611"]]
17135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17136
+  (0.0ms) SAVEPOINT active_record_1
17137
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.394223"], ["number", "+41 000-111-21"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.394223"], ["vcard_id", 1]]
17138
+  (0.4ms) RELEASE SAVEPOINT active_record_1
17139
+ Processing by HasVcards::PhoneNumbersController#show as HTML
17140
+ Parameters: {"id"=>"1"}
17141
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
17142
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.1ms)
17143
+  (0.1ms) rollback transaction
17144
+  (0.0ms) begin transaction
17145
+  (0.0ms) SAVEPOINT active_record_1
17146
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.404474"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.404474"]]
17147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17148
+  (0.0ms) SAVEPOINT active_record_1
17149
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.406085"], ["number", "+41 000-111-22"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.406085"], ["vcard_id", 1]]
17150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17151
+ Processing by HasVcards::PhoneNumbersController#show as HTML
17152
+ Parameters: {"id"=>"1"}
17153
+ HasVcards::PhoneNumber Load (0.4ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
17154
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.4ms)
17155
+  (0.1ms) rollback transaction
17156
+  (0.0ms) begin transaction
17157
+  (0.0ms) SAVEPOINT active_record_1
17158
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.412274"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.412274"]]
17159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17160
+  (0.0ms) SAVEPOINT active_record_1
17161
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.413907"], ["number", "+41 000-111-23"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.413907"], ["vcard_id", 1]]
17162
+  (0.3ms) RELEASE SAVEPOINT active_record_1
17163
+ Processing by HasVcards::PhoneNumbersController#show as HTML
17164
+ Parameters: {"id"=>"1"}
17165
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
17166
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17167
+  (0.1ms) rollback transaction
17168
+  (0.0ms) begin transaction
17169
+  (0.1ms) SAVEPOINT active_record_1
17170
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
17171
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "reference_id", "reference_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.427049"], ["full_name", "Full"], ["reference_id", 1], ["reference_type", "Something"], ["updated_at", "2016-06-13 20:19:42.427049"]]
17172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17173
+  (0.1ms) rollback transaction
17174
+  (0.1ms) begin transaction
17175
+  (0.1ms) SAVEPOINT active_record_1
17176
+ SQL (0.3ms) INSERT INTO "somethings" DEFAULT VALUES
17177
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "reference_id", "reference_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.436430"], ["full_name", "Full"], ["reference_id", 1], ["reference_type", "Something"], ["updated_at", "2016-06-13 20:19:42.436430"]]
17178
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17179
+ HasVcards::Vcard Load (0.2ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."reference_id" = ? AND "has_vcards_vcards"."reference_type" = ? [["reference_id", 1], ["reference_type", "Something"]]
17180
+  (0.1ms) rollback transaction
17181
+  (0.0ms) begin transaction
17182
+  (0.0ms) rollback transaction
17183
+  (0.0ms) begin transaction
17184
+  (0.0ms) rollback transaction
17185
+  (0.0ms) begin transaction
17186
+  (0.0ms) rollback transaction
17187
+  (0.0ms) begin transaction
17188
+  (0.1ms) rollback transaction
17189
+  (0.0ms) begin transaction
17190
+  (0.0ms) SAVEPOINT active_record_1
17191
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.454966"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.454966"]]
17192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17193
+ Processing by HasVcards::VcardsController#index as HTML
17194
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
17195
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards"
17196
+  (0.1ms) rollback transaction
17197
+  (0.0ms) begin transaction
17198
+  (0.0ms) SAVEPOINT active_record_1
17199
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.462378"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.462378"]]
17200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17201
+ Processing by HasVcards::VcardsController#index as HTML
17202
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17203
+  (0.1ms) rollback transaction
17204
+  (0.0ms) begin transaction
17205
+  (0.0ms) SAVEPOINT active_record_1
17206
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.466281"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.466281"]]
17207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17208
+ Processing by HasVcards::VcardsController#index as HTML
17209
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17210
+  (0.1ms) rollback transaction
17211
+  (0.0ms) begin transaction
17212
+  (0.0ms) SAVEPOINT active_record_1
17213
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.470233"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.470233"]]
17214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17215
+ Processing by HasVcards::VcardsController#show as HTML
17216
+ Parameters: {"id"=>"1"}
17217
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17218
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms)
17219
+  (0.1ms) rollback transaction
17220
+  (0.0ms) begin transaction
17221
+  (0.0ms) SAVEPOINT active_record_1
17222
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.475756"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.475756"]]
17223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17224
+ Processing by HasVcards::VcardsController#show as HTML
17225
+ Parameters: {"id"=>"1"}
17226
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17227
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17228
+  (0.1ms) rollback transaction
17229
+  (0.0ms) begin transaction
17230
+  (0.0ms) SAVEPOINT active_record_1
17231
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.480046"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.480046"]]
17232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17233
+ Processing by HasVcards::VcardsController#show as HTML
17234
+ Parameters: {"id"=>"1"}
17235
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17236
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17237
+  (0.1ms) rollback transaction
17238
+  (0.1ms) begin transaction
17239
+  (0.0ms) rollback transaction
17240
+  (0.0ms) begin transaction
17241
+  (0.0ms) rollback transaction
17242
+  (0.0ms) begin transaction
17243
+  (0.0ms) SAVEPOINT active_record_1
17244
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.488983"], ["full_name", "Ben Hur"], ["updated_at", "2016-06-13 20:19:42.488983"]]
17245
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.489923"], ["number", "+41 000-111-24"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.489923"], ["vcard_id", 1]]
17246
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17247
+  (0.0ms) SAVEPOINT active_record_1
17248
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.491410"], ["number", "+41 000-111-25"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.491410"], ["vcard_id", 1]]
17249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17250
+  (0.0ms) SAVEPOINT active_record_1
17251
+ SQL (0.0ms) INSERT INTO "has_vcards_phone_numbers" ("created_at", "number", "phone_number_type", "updated_at", "vcard_id") VALUES (?, ?, ?, ?, ?) [["created_at", "2016-06-13 20:19:42.492432"], ["number", "+41 000-111-26"], ["phone_number_type", "phone"], ["updated_at", "2016-06-13 20:19:42.492432"], ["vcard_id", 1]]
17252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17253
+  (0.1ms) SELECT COUNT(*) FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
17254
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
17255
+  (0.1ms) rollback transaction
17256
+  (0.0ms) begin transaction
17257
+  (0.1ms) rollback transaction
17258
+  (0.0ms) begin transaction
17259
+  (0.0ms) rollback transaction
17260
+  (0.0ms) begin transaction
17261
+  (0.0ms) rollback transaction
17262
+  (0.0ms) begin transaction
17263
+  (0.0ms) rollback transaction
17264
+  (0.1ms) begin transaction
17265
+  (0.0ms) rollback transaction
17266
+  (0.0ms) begin transaction
17267
+  (0.0ms) rollback transaction
17268
+  (0.0ms) begin transaction
17269
+  (0.0ms) rollback transaction
17270
+  (0.0ms) begin transaction
17271
+  (0.1ms) rollback transaction
17272
+  (0.0ms) begin transaction
17273
+  (0.0ms) SAVEPOINT active_record_1
17274
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.509620"], ["full_name", "quack"], ["updated_at", "2016-06-13 20:19:42.509620"]]
17275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17276
+  (0.0ms) SAVEPOINT active_record_1
17277
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.511009"], ["full_name", "Andi Peter"], ["updated_at", "2016-06-13 20:19:42.511009"]]
17278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17279
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE (full_name LIKE 'quack' OR family_name LIKE 'quack' OR given_name LIKE 'quack' OR nickname LIKE 'quack')
17280
+  (0.1ms) rollback transaction
17281
+  (0.0ms) begin transaction
17282
+  (0.0ms) SAVEPOINT active_record_1
17283
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("created_at", "full_name", "updated_at") VALUES (?, ?, ?) [["created_at", "2016-06-13 20:19:42.513507"], ["full_name", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"], ["updated_at", "2016-06-13 20:19:42.513507"]]
17284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17285
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17286
+  (0.1ms) rollback transaction
17287
+  (0.0ms) begin transaction
17288
+  (0.0ms) rollback transaction
17289
+  (0.0ms) begin transaction
17290
+  (0.0ms) rollback transaction
17291
+  (0.0ms) begin transaction
17292
+  (0.0ms) rollback transaction
17293
+  (0.0ms) begin transaction
17294
+  (0.0ms) rollback transaction
17295
+  (0.0ms) begin transaction
17296
+  (0.0ms) rollback transaction
17297
+  (0.0ms) begin transaction
17298
+  (0.0ms) rollback transaction
17299
+  (0.0ms) begin transaction
17300
+  (0.0ms) rollback transaction
17301
+  (0.0ms) begin transaction
17302
+  (0.0ms) rollback transaction
17303
+  (0.0ms) begin transaction
17304
+  (0.0ms) rollback transaction
17305
+  (0.0ms) begin transaction
17306
+  (0.0ms) rollback transaction
17307
+  (0.0ms) begin transaction
17308
+  (0.0ms) rollback transaction
17309
+  (0.3ms) begin transaction
17310
+  (0.1ms) rollback transaction
17311
+  (0.0ms) begin transaction
17312
+  (0.0ms) rollback transaction
17313
+  (0.0ms) begin transaction
17314
+  (0.0ms) rollback transaction
17315
+  (0.0ms) begin transaction
17316
+  (0.1ms) rollback transaction
17317
+  (0.0ms) begin transaction
17318
+  (0.0ms) rollback transaction
17319
+  (0.0ms) begin transaction
17320
+  (0.0ms) rollback transaction
17321
+  (0.0ms) begin transaction
17322
+  (0.1ms) rollback transaction
17323
+  (0.0ms) begin transaction
17324
+  (0.0ms) rollback transaction
17325
+  (0.0ms) begin transaction
17326
+  (0.0ms) rollback transaction
17327
+  (0.0ms) begin transaction
17328
+  (0.0ms) rollback transaction
17329
+  (0.0ms) begin transaction
17330
+  (0.1ms) rollback transaction
17331
+  (0.0ms) begin transaction
17332
+  (0.1ms) rollback transaction
17333
+  (0.0ms) begin transaction
17334
+  (0.0ms) rollback transaction
17335
+  (0.0ms) begin transaction
17336
+  (0.0ms) rollback transaction
17337
+  (0.0ms) begin transaction
17338
+  (0.1ms) rollback transaction
17339
+  (0.0ms) begin transaction
17340
+  (0.1ms) rollback transaction
17341
+  (0.0ms) begin transaction
17342
+  (0.0ms) SAVEPOINT active_record_1
17343
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.659026"], ["updated_at", "2016-06-13 20:33:08.659026"]]
17344
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "phone_number_type", "vcard_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-1"], ["phone_number_type", "phone"], ["vcard_id", 1], ["created_at", "2016-06-13 20:33:08.661716"], ["updated_at", "2016-06-13 20:33:08.661716"]]
17345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17346
+  (0.0ms) SAVEPOINT active_record_1
17347
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-2"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.663160"], ["updated_at", "2016-06-13 20:33:08.663160"]]
17348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17349
+  (0.0ms) SAVEPOINT active_record_1
17350
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-3"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.664399"], ["updated_at", "2016-06-13 20:33:08.664399"]]
17351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17352
+  (0.1ms) SELECT COUNT(*) FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
17353
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
17354
+  (0.1ms) rollback transaction
17355
+  (0.0ms) begin transaction
17356
+  (0.0ms) SAVEPOINT active_record_1
17357
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"], ["created_at", "2016-06-13 20:33:08.669607"], ["updated_at", "2016-06-13 20:33:08.669607"]]
17358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17359
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17360
+  (0.1ms) rollback transaction
17361
+  (0.0ms) begin transaction
17362
+  (0.1ms) rollback transaction
17363
+  (0.0ms) begin transaction
17364
+  (0.0ms) rollback transaction
17365
+  (0.0ms) begin transaction
17366
+  (0.0ms) rollback transaction
17367
+  (0.0ms) begin transaction
17368
+  (0.0ms) rollback transaction
17369
+  (0.1ms) begin transaction
17370
+  (0.0ms) rollback transaction
17371
+  (0.0ms) begin transaction
17372
+  (0.0ms) SAVEPOINT active_record_1
17373
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "quack"], ["created_at", "2016-06-13 20:33:08.680596"], ["updated_at", "2016-06-13 20:33:08.680596"]]
17374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17375
+  (0.0ms) SAVEPOINT active_record_1
17376
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Andi Peter"], ["created_at", "2016-06-13 20:33:08.682235"], ["updated_at", "2016-06-13 20:33:08.682235"]]
17377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17378
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE (full_name LIKE 'quack' OR family_name LIKE 'quack' OR given_name LIKE 'quack' OR nickname LIKE 'quack')
17379
+  (0.1ms) rollback transaction
17380
+  (0.0ms) begin transaction
17381
+  (0.1ms) SAVEPOINT active_record_1
17382
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82001"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:33:08.684977"], ["updated_at", "2016-06-13 20:33:08.684977"]]
17383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17384
+  (0.1ms) rollback transaction
17385
+  (0.0ms) begin transaction
17386
+  (0.0ms) SAVEPOINT active_record_1
17387
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82002"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:33:08.687235"], ["updated_at", "2016-06-13 20:33:08.687235"]]
17388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17389
+  (0.1ms) rollback transaction
17390
+  (0.0ms) begin transaction
17391
+  (0.0ms) SAVEPOINT active_record_1
17392
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82003"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:33:08.689155"], ["updated_at", "2016-06-13 20:33:08.689155"]]
17393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17394
+  (0.1ms) rollback transaction
17395
+  (0.0ms) begin transaction
17396
+  (0.0ms) SAVEPOINT active_record_1
17397
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82004"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:33:08.691811"], ["updated_at", "2016-06-13 20:33:08.691811"]]
17398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17399
+  (0.1ms) rollback transaction
17400
+  (0.0ms) begin transaction
17401
+  (0.0ms) SAVEPOINT active_record_1
17402
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82005"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:33:08.693781"], ["updated_at", "2016-06-13 20:33:08.693781"]]
17403
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17404
+  (0.1ms) rollback transaction
17405
+  (0.0ms) begin transaction
17406
+  (0.0ms) SAVEPOINT active_record_1
17407
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82006"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:33:08.695708"], ["updated_at", "2016-06-13 20:33:08.695708"]]
17408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17409
+  (0.1ms) rollback transaction
17410
+  (0.0ms) begin transaction
17411
+  (0.0ms) SAVEPOINT active_record_1
17412
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82007"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:33:08.697914"], ["updated_at", "2016-06-13 20:33:08.697914"]]
17413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17414
+  (0.1ms) rollback transaction
17415
+  (0.0ms) begin transaction
17416
+  (0.0ms) SAVEPOINT active_record_1
17417
+ SQL (1.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.700980"], ["updated_at", "2016-06-13 20:33:08.700980"]]
17418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17419
+ Processing by HasVcards::VcardsController#show as HTML
17420
+ Parameters: {"id"=>"1"}
17421
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17422
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.2ms)
17423
+ Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.1ms)
17424
+  (0.1ms) rollback transaction
17425
+  (0.0ms) begin transaction
17426
+  (0.0ms) SAVEPOINT active_record_1
17427
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.722720"], ["updated_at", "2016-06-13 20:33:08.722720"]]
17428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17429
+ Processing by HasVcards::VcardsController#show as HTML
17430
+ Parameters: {"id"=>"1"}
17431
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17432
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
17433
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
17434
+  (0.1ms) rollback transaction
17435
+  (0.0ms) begin transaction
17436
+  (0.0ms) SAVEPOINT active_record_1
17437
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.730639"], ["updated_at", "2016-06-13 20:33:08.730639"]]
17438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17439
+ Processing by HasVcards::VcardsController#show as HTML
17440
+ Parameters: {"id"=>"1"}
17441
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17442
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
17443
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
17444
+  (0.1ms) rollback transaction
17445
+  (0.0ms) begin transaction
17446
+  (0.0ms) SAVEPOINT active_record_1
17447
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.739179"], ["updated_at", "2016-06-13 20:33:08.739179"]]
17448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17449
+ Processing by HasVcards::VcardsController#index as HTML
17450
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.6ms)
17451
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
17452
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards"
17453
+  (0.1ms) rollback transaction
17454
+  (0.0ms) begin transaction
17455
+  (0.0ms) SAVEPOINT active_record_1
17456
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.750328"], ["updated_at", "2016-06-13 20:33:08.750328"]]
17457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17458
+ Processing by HasVcards::VcardsController#index as HTML
17459
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
17460
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
17461
+  (0.3ms) rollback transaction
17462
+  (0.0ms) begin transaction
17463
+  (0.0ms) SAVEPOINT active_record_1
17464
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.757383"], ["updated_at", "2016-06-13 20:33:08.757383"]]
17465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17466
+ Processing by HasVcards::VcardsController#index as HTML
17467
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
17468
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
17469
+  (0.1ms) rollback transaction
17470
+  (0.0ms) begin transaction
17471
+  (0.0ms) SAVEPOINT active_record_1
17472
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.764198"], ["updated_at", "2016-06-13 20:33:08.764198"]]
17473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17474
+  (0.0ms) SAVEPOINT active_record_1
17475
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-4"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.765790"], ["updated_at", "2016-06-13 20:33:08.765790"]]
17476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17477
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17478
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.2ms)
17479
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
17480
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers"
17481
+  (0.1ms) rollback transaction
17482
+  (0.0ms) begin transaction
17483
+  (0.0ms) SAVEPOINT active_record_1
17484
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.777127"], ["updated_at", "2016-06-13 20:33:08.777127"]]
17485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17486
+  (0.0ms) SAVEPOINT active_record_1
17487
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-5"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.778694"], ["updated_at", "2016-06-13 20:33:08.778694"]]
17488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17489
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17490
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
17491
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
17492
+  (0.1ms) rollback transaction
17493
+  (0.0ms) begin transaction
17494
+  (0.0ms) SAVEPOINT active_record_1
17495
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.785492"], ["updated_at", "2016-06-13 20:33:08.785492"]]
17496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17497
+  (0.0ms) SAVEPOINT active_record_1
17498
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-6"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.787407"], ["updated_at", "2016-06-13 20:33:08.787407"]]
17499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17500
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17501
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
17502
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
17503
+  (0.1ms) rollback transaction
17504
+  (0.0ms) begin transaction
17505
+  (0.0ms) SAVEPOINT active_record_1
17506
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.795058"], ["updated_at", "2016-06-13 20:33:08.795058"]]
17507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17508
+  (0.0ms) SAVEPOINT active_record_1
17509
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-7"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.796901"], ["updated_at", "2016-06-13 20:33:08.796901"]]
17510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17511
+ Processing by HasVcards::PhoneNumbersController#show as HTML
17512
+ Parameters: {"id"=>"1"}
17513
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
17514
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
17515
+ Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.1ms)
17516
+  (0.1ms) rollback transaction
17517
+  (0.0ms) begin transaction
17518
+  (0.0ms) SAVEPOINT active_record_1
17519
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.807957"], ["updated_at", "2016-06-13 20:33:08.807957"]]
17520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17521
+  (0.0ms) SAVEPOINT active_record_1
17522
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-8"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.809817"], ["updated_at", "2016-06-13 20:33:08.809817"]]
17523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17524
+ Processing by HasVcards::PhoneNumbersController#show as HTML
17525
+ Parameters: {"id"=>"1"}
17526
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
17527
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.1ms)
17528
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
17529
+  (0.1ms) rollback transaction
17530
+  (0.0ms) begin transaction
17531
+  (0.0ms) SAVEPOINT active_record_1
17532
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.817927"], ["updated_at", "2016-06-13 20:33:08.817927"]]
17533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17534
+  (0.0ms) SAVEPOINT active_record_1
17535
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-9"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.819790"], ["updated_at", "2016-06-13 20:33:08.819790"]]
17536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17537
+ Processing by HasVcards::PhoneNumbersController#show as HTML
17538
+ Parameters: {"id"=>"1"}
17539
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
17540
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
17541
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17542
+  (0.1ms) rollback transaction
17543
+  (0.0ms) begin transaction
17544
+  (0.0ms) SAVEPOINT active_record_1
17545
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.827434"], ["updated_at", "2016-06-13 20:33:08.827434"]]
17546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17547
+  (0.0ms) SAVEPOINT active_record_1
17548
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-10"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.829313"], ["updated_at", "2016-06-13 20:33:08.829313"]]
17549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17550
+  (0.1ms) rollback transaction
17551
+  (0.0ms) begin transaction
17552
+  (0.0ms) SAVEPOINT active_record_1
17553
+ SQL (0.6ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.831821"], ["updated_at", "2016-06-13 20:33:08.831821"]]
17554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17555
+  (0.0ms) SAVEPOINT active_record_1
17556
+ SQL (0.4ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-11"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.833449"], ["updated_at", "2016-06-13 20:33:08.833449"]]
17557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17558
+  (0.0ms) SAVEPOINT active_record_1
17559
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.835423"], ["updated_at", "2016-06-13 20:33:08.835423"]]
17560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17561
+  (0.1ms) rollback transaction
17562
+  (0.0ms) begin transaction
17563
+  (0.0ms) SAVEPOINT active_record_1
17564
+ SQL (0.5ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.838122"], ["updated_at", "2016-06-13 20:33:08.838122"]]
17565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17566
+  (0.0ms) SAVEPOINT active_record_1
17567
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-12"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.839822"], ["updated_at", "2016-06-13 20:33:08.839822"]]
17568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17569
+  (0.1ms) SAVEPOINT active_record_1
17570
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.848973"], ["updated_at", "2016-06-13 20:33:08.848973"]]
17571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17572
+  (0.1ms) rollback transaction
17573
+  (0.0ms) begin transaction
17574
+  (0.0ms) SAVEPOINT active_record_1
17575
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.851297"], ["updated_at", "2016-06-13 20:33:08.851297"]]
17576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17577
+  (0.0ms) SAVEPOINT active_record_1
17578
+ SQL (0.5ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-13"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.852605"], ["updated_at", "2016-06-13 20:33:08.852605"]]
17579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17580
+  (0.0ms) SAVEPOINT active_record_1
17581
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.854297"], ["updated_at", "2016-06-13 20:33:08.854297"]]
17582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17583
+  (0.1ms) rollback transaction
17584
+  (0.0ms) begin transaction
17585
+  (0.0ms) SAVEPOINT active_record_1
17586
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.856226"], ["updated_at", "2016-06-13 20:33:08.856226"]]
17587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17588
+  (0.0ms) SAVEPOINT active_record_1
17589
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-14"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.857475"], ["updated_at", "2016-06-13 20:33:08.857475"]]
17590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17591
+  (0.0ms) SAVEPOINT active_record_1
17592
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.858627"], ["updated_at", "2016-06-13 20:33:08.858627"]]
17593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17594
+  (0.1ms) rollback transaction
17595
+  (0.0ms) begin transaction
17596
+  (0.0ms) SAVEPOINT active_record_1
17597
+ SQL (0.5ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.860720"], ["updated_at", "2016-06-13 20:33:08.860720"]]
17598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17599
+  (0.0ms) SAVEPOINT active_record_1
17600
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-15"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.862211"], ["updated_at", "2016-06-13 20:33:08.862211"]]
17601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17602
+  (0.0ms) SAVEPOINT active_record_1
17603
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.863483"], ["updated_at", "2016-06-13 20:33:08.863483"]]
17604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17605
+  (0.1ms) rollback transaction
17606
+  (0.0ms) begin transaction
17607
+  (0.0ms) SAVEPOINT active_record_1
17608
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.865429"], ["updated_at", "2016-06-13 20:33:08.865429"]]
17609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17610
+  (0.0ms) SAVEPOINT active_record_1
17611
+ SQL (0.4ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-16"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.866676"], ["updated_at", "2016-06-13 20:33:08.866676"]]
17612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17613
+  (0.0ms) SAVEPOINT active_record_1
17614
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.868123"], ["updated_at", "2016-06-13 20:33:08.868123"]]
17615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17616
+  (0.1ms) rollback transaction
17617
+  (0.0ms) begin transaction
17618
+  (0.0ms) SAVEPOINT active_record_1
17619
+ SQL (0.4ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.870170"], ["updated_at", "2016-06-13 20:33:08.870170"]]
17620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17621
+  (0.0ms) SAVEPOINT active_record_1
17622
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-18"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.871646"], ["updated_at", "2016-06-13 20:33:08.871646"]]
17623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17624
+  (0.0ms) SAVEPOINT active_record_1
17625
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.872866"], ["updated_at", "2016-06-13 20:33:08.872866"]]
17626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17627
+  (0.1ms) rollback transaction
17628
+  (0.0ms) begin transaction
17629
+  (0.0ms) SAVEPOINT active_record_1
17630
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.874711"], ["updated_at", "2016-06-13 20:33:08.874711"]]
17631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17632
+  (0.0ms) SAVEPOINT active_record_1
17633
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-20"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.875955"], ["updated_at", "2016-06-13 20:33:08.875955"]]
17634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17635
+  (0.0ms) SAVEPOINT active_record_1
17636
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.877128"], ["updated_at", "2016-06-13 20:33:08.877128"]]
17637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17638
+  (0.1ms) rollback transaction
17639
+  (0.0ms) begin transaction
17640
+  (0.0ms) SAVEPOINT active_record_1
17641
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.879218"], ["updated_at", "2016-06-13 20:33:08.879218"]]
17642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17643
+  (0.0ms) SAVEPOINT active_record_1
17644
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-22"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.880458"], ["updated_at", "2016-06-13 20:33:08.880458"]]
17645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17646
+  (0.0ms) SAVEPOINT active_record_1
17647
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.881668"], ["updated_at", "2016-06-13 20:33:08.881668"]]
17648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17649
+  (0.1ms) rollback transaction
17650
+  (0.0ms) begin transaction
17651
+  (0.0ms) SAVEPOINT active_record_1
17652
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.883502"], ["updated_at", "2016-06-13 20:33:08.883502"]]
17653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17654
+  (0.0ms) SAVEPOINT active_record_1
17655
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-23"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.884722"], ["updated_at", "2016-06-13 20:33:08.884722"]]
17656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17657
+  (0.1ms) SAVEPOINT active_record_1
17658
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.885962"], ["updated_at", "2016-06-13 20:33:08.885962"]]
17659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17660
+  (0.1ms) rollback transaction
17661
+  (0.0ms) begin transaction
17662
+  (0.0ms) SAVEPOINT active_record_1
17663
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.887843"], ["updated_at", "2016-06-13 20:33:08.887843"]]
17664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17665
+  (0.0ms) SAVEPOINT active_record_1
17666
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-24"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.889086"], ["updated_at", "2016-06-13 20:33:08.889086"]]
17667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17668
+  (0.0ms) SAVEPOINT active_record_1
17669
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.890497"], ["updated_at", "2016-06-13 20:33:08.890497"]]
17670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17671
+  (0.1ms) rollback transaction
17672
+  (0.0ms) begin transaction
17673
+  (0.0ms) SAVEPOINT active_record_1
17674
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.892481"], ["updated_at", "2016-06-13 20:33:08.892481"]]
17675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17676
+  (0.0ms) SAVEPOINT active_record_1
17677
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-25"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.893719"], ["updated_at", "2016-06-13 20:33:08.893719"]]
17678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17679
+  (0.1ms) SAVEPOINT active_record_1
17680
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.894952"], ["updated_at", "2016-06-13 20:33:08.894952"]]
17681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17682
+  (0.1ms) rollback transaction
17683
+  (0.0ms) begin transaction
17684
+  (0.0ms) SAVEPOINT active_record_1
17685
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.896918"], ["updated_at", "2016-06-13 20:33:08.896918"]]
17686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17687
+  (0.0ms) SAVEPOINT active_record_1
17688
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-26"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:33:08.898243"], ["updated_at", "2016-06-13 20:33:08.898243"]]
17689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17690
+  (0.0ms) SAVEPOINT active_record_1
17691
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:33:08.899476"], ["updated_at", "2016-06-13 20:33:08.899476"]]
17692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17693
+  (0.1ms) rollback transaction
17694
+  (0.0ms) begin transaction
17695
+  (0.0ms) SAVEPOINT active_record_1
17696
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
17697
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "reference_type", "reference_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["full_name", "Full"], ["reference_type", "Something"], ["reference_id", 1], ["created_at", "2016-06-13 20:33:08.903970"], ["updated_at", "2016-06-13 20:33:08.903970"]]
17698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17699
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."reference_id" = ? AND "has_vcards_vcards"."reference_type" = ? [["reference_id", 1], ["reference_type", "Something"]]
17700
+  (0.1ms) rollback transaction
17701
+  (0.0ms) begin transaction
17702
+  (0.0ms) SAVEPOINT active_record_1
17703
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
17704
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("reference_type", "full_name", "reference_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["reference_type", "Something"], ["full_name", "Full"], ["reference_id", 1], ["created_at", "2016-06-13 20:33:08.908488"], ["updated_at", "2016-06-13 20:33:08.908488"]]
17705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17706
+  (0.1ms) rollback transaction
17707
+  (0.0ms) begin transaction
17708
+  (0.0ms) rollback transaction
17709
+  (0.0ms) begin transaction
17710
+  (0.0ms) rollback transaction
17711
+  (0.0ms) begin transaction
17712
+  (0.0ms) rollback transaction
17713
+  (0.0ms) begin transaction
17714
+  (0.0ms) rollback transaction
17715
+  (0.3ms) begin transaction
17716
+  (0.1ms) SAVEPOINT active_record_1
17717
+ SQL (0.4ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.934709"], ["updated_at", "2016-06-13 20:37:30.934709"]]
17718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17719
+  (0.1ms) SAVEPOINT active_record_1
17720
+ SQL (0.3ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-1"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.941338"], ["updated_at", "2016-06-13 20:37:30.941338"]]
17721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17722
+  (0.1ms) rollback transaction
17723
+  (0.0ms) begin transaction
17724
+  (0.0ms) SAVEPOINT active_record_1
17725
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.944411"], ["updated_at", "2016-06-13 20:37:30.944411"]]
17726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17727
+  (0.0ms) SAVEPOINT active_record_1
17728
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-2"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.945785"], ["updated_at", "2016-06-13 20:37:30.945785"]]
17729
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17730
+  (0.0ms) SAVEPOINT active_record_1
17731
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.947054"], ["updated_at", "2016-06-13 20:37:30.947054"]]
17732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17733
+  (0.1ms) rollback transaction
17734
+  (0.0ms) begin transaction
17735
+  (0.0ms) SAVEPOINT active_record_1
17736
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.949401"], ["updated_at", "2016-06-13 20:37:30.949401"]]
17737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17738
+  (0.0ms) SAVEPOINT active_record_1
17739
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-4"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.950623"], ["updated_at", "2016-06-13 20:37:30.950623"]]
17740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17741
+  (0.0ms) SAVEPOINT active_record_1
17742
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.951822"], ["updated_at", "2016-06-13 20:37:30.951822"]]
17743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17744
+  (0.1ms) rollback transaction
17745
+  (0.0ms) begin transaction
17746
+  (0.0ms) SAVEPOINT active_record_1
17747
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.958500"], ["updated_at", "2016-06-13 20:37:30.958500"]]
17748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17749
+  (0.0ms) SAVEPOINT active_record_1
17750
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-6"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.959890"], ["updated_at", "2016-06-13 20:37:30.959890"]]
17751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17752
+  (0.0ms) SAVEPOINT active_record_1
17753
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.961164"], ["updated_at", "2016-06-13 20:37:30.961164"]]
17754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17755
+  (0.1ms) rollback transaction
17756
+  (0.0ms) begin transaction
17757
+  (0.0ms) SAVEPOINT active_record_1
17758
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.963297"], ["updated_at", "2016-06-13 20:37:30.963297"]]
17759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17760
+  (0.0ms) SAVEPOINT active_record_1
17761
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-8"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.964553"], ["updated_at", "2016-06-13 20:37:30.964553"]]
17762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17763
+  (0.0ms) SAVEPOINT active_record_1
17764
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.965762"], ["updated_at", "2016-06-13 20:37:30.965762"]]
17765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17766
+  (0.1ms) rollback transaction
17767
+  (0.0ms) begin transaction
17768
+  (0.0ms) SAVEPOINT active_record_1
17769
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.972483"], ["updated_at", "2016-06-13 20:37:30.972483"]]
17770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17771
+  (0.0ms) SAVEPOINT active_record_1
17772
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-9"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.973856"], ["updated_at", "2016-06-13 20:37:30.973856"]]
17773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17774
+  (0.0ms) SAVEPOINT active_record_1
17775
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.975154"], ["updated_at", "2016-06-13 20:37:30.975154"]]
17776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17777
+  (0.1ms) rollback transaction
17778
+  (0.0ms) begin transaction
17779
+  (0.0ms) SAVEPOINT active_record_1
17780
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.977275"], ["updated_at", "2016-06-13 20:37:30.977275"]]
17781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17782
+  (0.0ms) SAVEPOINT active_record_1
17783
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-10"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.978534"], ["updated_at", "2016-06-13 20:37:30.978534"]]
17784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17785
+  (0.0ms) SAVEPOINT active_record_1
17786
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.979853"], ["updated_at", "2016-06-13 20:37:30.979853"]]
17787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17788
+  (0.1ms) rollback transaction
17789
+  (0.0ms) begin transaction
17790
+  (0.0ms) SAVEPOINT active_record_1
17791
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.981707"], ["updated_at", "2016-06-13 20:37:30.981707"]]
17792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17793
+  (0.1ms) SAVEPOINT active_record_1
17794
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-11"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.988002"], ["updated_at", "2016-06-13 20:37:30.988002"]]
17795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17796
+  (0.0ms) SAVEPOINT active_record_1
17797
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.989469"], ["updated_at", "2016-06-13 20:37:30.989469"]]
17798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17799
+  (0.1ms) rollback transaction
17800
+  (0.0ms) begin transaction
17801
+  (0.0ms) SAVEPOINT active_record_1
17802
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.992497"], ["updated_at", "2016-06-13 20:37:30.992497"]]
17803
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17804
+  (0.0ms) SAVEPOINT active_record_1
17805
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-12"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.993989"], ["updated_at", "2016-06-13 20:37:30.993989"]]
17806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17807
+  (0.0ms) SAVEPOINT active_record_1
17808
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.995375"], ["updated_at", "2016-06-13 20:37:30.995375"]]
17809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17810
+  (0.1ms) rollback transaction
17811
+  (0.1ms) begin transaction
17812
+  (0.0ms) SAVEPOINT active_record_1
17813
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:30.997433"], ["updated_at", "2016-06-13 20:37:30.997433"]]
17814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17815
+  (0.0ms) SAVEPOINT active_record_1
17816
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-13"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:30.998723"], ["updated_at", "2016-06-13 20:37:30.998723"]]
17817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17818
+  (0.0ms) SAVEPOINT active_record_1
17819
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.000021"], ["updated_at", "2016-06-13 20:37:31.000021"]]
17820
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17821
+  (0.1ms) rollback transaction
17822
+  (0.0ms) begin transaction
17823
+  (0.0ms) SAVEPOINT active_record_1
17824
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.002022"], ["updated_at", "2016-06-13 20:37:31.002022"]]
17825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17826
+  (0.0ms) SAVEPOINT active_record_1
17827
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-14"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.003353"], ["updated_at", "2016-06-13 20:37:31.003353"]]
17828
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17829
+  (0.0ms) SAVEPOINT active_record_1
17830
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.004658"], ["updated_at", "2016-06-13 20:37:31.004658"]]
17831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17832
+  (0.1ms) rollback transaction
17833
+  (0.0ms) begin transaction
17834
+  (0.0ms) SAVEPOINT active_record_1
17835
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.006567"], ["updated_at", "2016-06-13 20:37:31.006567"]]
17836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17837
+  (0.0ms) SAVEPOINT active_record_1
17838
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-15"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.007867"], ["updated_at", "2016-06-13 20:37:31.007867"]]
17839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17840
+  (0.0ms) SAVEPOINT active_record_1
17841
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.009201"], ["updated_at", "2016-06-13 20:37:31.009201"]]
17842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17843
+  (0.1ms) rollback transaction
17844
+  (0.0ms) begin transaction
17845
+  (0.0ms) SAVEPOINT active_record_1
17846
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.011186"], ["updated_at", "2016-06-13 20:37:31.011186"]]
17847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17848
+  (0.0ms) SAVEPOINT active_record_1
17849
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-16"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.012502"], ["updated_at", "2016-06-13 20:37:31.012502"]]
17850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17851
+  (0.0ms) SAVEPOINT active_record_1
17852
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.013790"], ["updated_at", "2016-06-13 20:37:31.013790"]]
17853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17854
+  (0.1ms) rollback transaction
17855
+  (0.0ms) begin transaction
17856
+  (0.0ms) SAVEPOINT active_record_1
17857
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.015738"], ["updated_at", "2016-06-13 20:37:31.015738"]]
17858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17859
+  (0.0ms) SAVEPOINT active_record_1
17860
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-17"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.017015"], ["updated_at", "2016-06-13 20:37:31.017015"]]
17861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17862
+  (0.1ms) SAVEPOINT active_record_1
17863
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.018303"], ["updated_at", "2016-06-13 20:37:31.018303"]]
17864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17865
+  (0.1ms) rollback transaction
17866
+  (0.0ms) begin transaction
17867
+  (0.0ms) rollback transaction
17868
+  (0.0ms) begin transaction
17869
+  (0.1ms) rollback transaction
17870
+  (0.0ms) begin transaction
17871
+  (0.0ms) rollback transaction
17872
+  (0.1ms) begin transaction
17873
+  (0.0ms) rollback transaction
17874
+  (0.0ms) begin transaction
17875
+  (0.0ms) rollback transaction
17876
+  (0.0ms) begin transaction
17877
+  (0.0ms) rollback transaction
17878
+  (0.0ms) begin transaction
17879
+  (0.0ms) rollback transaction
17880
+  (0.0ms) begin transaction
17881
+  (0.0ms) rollback transaction
17882
+  (0.0ms) begin transaction
17883
+  (0.0ms) SAVEPOINT active_record_1
17884
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.039912"], ["updated_at", "2016-06-13 20:37:31.039912"]]
17885
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "phone_number_type", "vcard_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-18"], ["phone_number_type", "phone"], ["vcard_id", 1], ["created_at", "2016-06-13 20:37:31.041025"], ["updated_at", "2016-06-13 20:37:31.041025"]]
17886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17887
+  (0.0ms) SAVEPOINT active_record_1
17888
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-19"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.042460"], ["updated_at", "2016-06-13 20:37:31.042460"]]
17889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17890
+  (0.0ms) SAVEPOINT active_record_1
17891
+ SQL (0.0ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-20"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.043695"], ["updated_at", "2016-06-13 20:37:31.043695"]]
17892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17893
+  (0.1ms) SELECT COUNT(*) FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
17894
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
17895
+  (0.1ms) rollback transaction
17896
+  (0.0ms) begin transaction
17897
+  (0.0ms) rollback transaction
17898
+  (0.0ms) begin transaction
17899
+  (0.0ms) SAVEPOINT active_record_1
17900
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"], ["created_at", "2016-06-13 20:37:31.059922"], ["updated_at", "2016-06-13 20:37:31.059922"]]
17901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17902
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
17903
+  (0.1ms) rollback transaction
17904
+  (0.0ms) begin transaction
17905
+  (0.0ms) rollback transaction
17906
+  (0.0ms) begin transaction
17907
+  (0.0ms) rollback transaction
17908
+  (0.0ms) begin transaction
17909
+  (0.4ms) SAVEPOINT active_record_1
17910
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "quack"], ["created_at", "2016-06-13 20:37:31.071302"], ["updated_at", "2016-06-13 20:37:31.071302"]]
17911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17912
+  (0.0ms) SAVEPOINT active_record_1
17913
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Andi Peter"], ["created_at", "2016-06-13 20:37:31.073174"], ["updated_at", "2016-06-13 20:37:31.073174"]]
17914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17915
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE (full_name LIKE 'quack' OR family_name LIKE 'quack' OR given_name LIKE 'quack' OR nickname LIKE 'quack')
17916
+  (0.1ms) rollback transaction
17917
+  (0.0ms) begin transaction
17918
+  (0.0ms) rollback transaction
17919
+  (0.0ms) begin transaction
17920
+  (0.0ms) rollback transaction
17921
+  (0.0ms) begin transaction
17922
+  (0.0ms) rollback transaction
17923
+  (0.0ms) begin transaction
17924
+  (0.0ms) rollback transaction
17925
+  (0.0ms) begin transaction
17926
+  (0.0ms) rollback transaction
17927
+  (0.0ms) begin transaction
17928
+  (0.3ms) rollback transaction
17929
+  (0.0ms) begin transaction
17930
+  (0.0ms) rollback transaction
17931
+  (0.0ms) begin transaction
17932
+  (0.0ms) rollback transaction
17933
+  (0.0ms) begin transaction
17934
+  (0.0ms) rollback transaction
17935
+  (0.0ms) begin transaction
17936
+  (0.0ms) rollback transaction
17937
+  (0.0ms) begin transaction
17938
+  (0.0ms) SAVEPOINT active_record_1
17939
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
17940
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "reference_type", "reference_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["full_name", "Full"], ["reference_type", "Something"], ["reference_id", 1], ["created_at", "2016-06-13 20:37:31.101389"], ["updated_at", "2016-06-13 20:37:31.101389"]]
17941
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17942
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."reference_id" = ? AND "has_vcards_vcards"."reference_type" = ? [["reference_id", 1], ["reference_type", "Something"]]
17943
+  (0.1ms) rollback transaction
17944
+  (0.0ms) begin transaction
17945
+  (0.0ms) SAVEPOINT active_record_1
17946
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
17947
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("reference_type", "full_name", "reference_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["reference_type", "Something"], ["full_name", "Full"], ["reference_id", 1], ["created_at", "2016-06-13 20:37:31.110287"], ["updated_at", "2016-06-13 20:37:31.110287"]]
17948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17949
+  (0.1ms) rollback transaction
17950
+  (0.0ms) begin transaction
17951
+  (0.0ms) rollback transaction
17952
+  (0.0ms) begin transaction
17953
+  (0.0ms) rollback transaction
17954
+  (0.4ms) begin transaction
17955
+  (0.0ms) rollback transaction
17956
+  (0.0ms) begin transaction
17957
+  (0.0ms) rollback transaction
17958
+  (0.0ms) begin transaction
17959
+  (0.0ms) SAVEPOINT active_record_1
17960
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.123271"], ["updated_at", "2016-06-13 20:37:31.123271"]]
17961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17962
+  (0.0ms) SAVEPOINT active_record_1
17963
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-21"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.125120"], ["updated_at", "2016-06-13 20:37:31.125120"]]
17964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17965
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17966
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.2ms)
17967
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
17968
+ HasVcards::PhoneNumber Load (0.2ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers"
17969
+  (0.1ms) rollback transaction
17970
+  (0.0ms) begin transaction
17971
+  (0.1ms) SAVEPOINT active_record_1
17972
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.151267"], ["updated_at", "2016-06-13 20:37:31.151267"]]
17973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17974
+  (0.0ms) SAVEPOINT active_record_1
17975
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-22"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.152719"], ["updated_at", "2016-06-13 20:37:31.152719"]]
17976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17977
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17978
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
17979
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
17980
+  (0.1ms) rollback transaction
17981
+  (0.0ms) begin transaction
17982
+  (0.0ms) SAVEPOINT active_record_1
17983
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.158514"], ["updated_at", "2016-06-13 20:37:31.158514"]]
17984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17985
+  (0.0ms) SAVEPOINT active_record_1
17986
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-23"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.159900"], ["updated_at", "2016-06-13 20:37:31.159900"]]
17987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17988
+ Processing by HasVcards::PhoneNumbersController#index as HTML
17989
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
17990
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
17991
+  (0.1ms) rollback transaction
17992
+  (0.0ms) begin transaction
17993
+  (0.0ms) SAVEPOINT active_record_1
17994
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.165224"], ["updated_at", "2016-06-13 20:37:31.165224"]]
17995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17996
+  (0.0ms) SAVEPOINT active_record_1
17997
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-24"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.166624"], ["updated_at", "2016-06-13 20:37:31.166624"]]
17998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17999
+ Processing by HasVcards::PhoneNumbersController#show as HTML
18000
+ Parameters: {"id"=>"1"}
18001
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
18002
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.1ms)
18003
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
18004
+  (0.1ms) rollback transaction
18005
+  (0.0ms) begin transaction
18006
+  (0.0ms) SAVEPOINT active_record_1
18007
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.174612"], ["updated_at", "2016-06-13 20:37:31.174612"]]
18008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18009
+  (0.0ms) SAVEPOINT active_record_1
18010
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-25"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.176010"], ["updated_at", "2016-06-13 20:37:31.176010"]]
18011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18012
+ Processing by HasVcards::PhoneNumbersController#show as HTML
18013
+ Parameters: {"id"=>"1"}
18014
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
18015
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18016
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18017
+  (0.1ms) rollback transaction
18018
+  (0.0ms) begin transaction
18019
+  (0.0ms) SAVEPOINT active_record_1
18020
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.181407"], ["updated_at", "2016-06-13 20:37:31.181407"]]
18021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18022
+  (0.0ms) SAVEPOINT active_record_1
18023
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-26"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 20:37:31.182848"], ["updated_at", "2016-06-13 20:37:31.182848"]]
18024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18025
+ Processing by HasVcards::PhoneNumbersController#show as HTML
18026
+ Parameters: {"id"=>"1"}
18027
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
18028
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18029
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18030
+  (0.1ms) rollback transaction
18031
+  (0.0ms) begin transaction
18032
+  (0.0ms) SAVEPOINT active_record_1
18033
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.188491"], ["updated_at", "2016-06-13 20:37:31.188491"]]
18034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18035
+ Processing by HasVcards::VcardsController#index as HTML
18036
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
18037
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
18038
+  (0.1ms) rollback transaction
18039
+  (0.0ms) begin transaction
18040
+  (0.0ms) SAVEPOINT active_record_1
18041
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.197434"], ["updated_at", "2016-06-13 20:37:31.197434"]]
18042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18043
+ Processing by HasVcards::VcardsController#index as HTML
18044
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
18045
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18046
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards"
18047
+  (0.1ms) rollback transaction
18048
+  (0.0ms) begin transaction
18049
+  (0.0ms) SAVEPOINT active_record_1
18050
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.203240"], ["updated_at", "2016-06-13 20:37:31.203240"]]
18051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18052
+ Processing by HasVcards::VcardsController#index as HTML
18053
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
18054
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18055
+  (0.1ms) rollback transaction
18056
+  (0.0ms) begin transaction
18057
+  (0.0ms) SAVEPOINT active_record_1
18058
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.208690"], ["updated_at", "2016-06-13 20:37:31.208690"]]
18059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18060
+ Processing by HasVcards::VcardsController#show as HTML
18061
+ Parameters: {"id"=>"1"}
18062
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
18063
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.1ms)
18064
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms)
18065
+  (0.1ms) rollback transaction
18066
+  (0.0ms) begin transaction
18067
+  (0.0ms) SAVEPOINT active_record_1
18068
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.215453"], ["updated_at", "2016-06-13 20:37:31.215453"]]
18069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18070
+ Processing by HasVcards::VcardsController#show as HTML
18071
+ Parameters: {"id"=>"1"}
18072
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
18073
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18074
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18075
+  (0.1ms) rollback transaction
18076
+  (0.0ms) begin transaction
18077
+  (0.0ms) SAVEPOINT active_record_1
18078
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 20:37:31.221132"], ["updated_at", "2016-06-13 20:37:31.221132"]]
18079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18080
+ Processing by HasVcards::VcardsController#show as HTML
18081
+ Parameters: {"id"=>"1"}
18082
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
18083
+ Rendered /home/shuerlimann/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18084
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18085
+  (0.1ms) rollback transaction
18086
+  (0.0ms) begin transaction
18087
+  (0.0ms) SAVEPOINT active_record_1
18088
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82001"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:37:31.226966"], ["updated_at", "2016-06-13 20:37:31.226966"]]
18089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18090
+  (0.1ms) rollback transaction
18091
+  (0.0ms) begin transaction
18092
+  (0.0ms) SAVEPOINT active_record_1
18093
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82002"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:37:31.229005"], ["updated_at", "2016-06-13 20:37:31.229005"]]
18094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18095
+  (0.1ms) rollback transaction
18096
+  (0.0ms) begin transaction
18097
+  (0.0ms) SAVEPOINT active_record_1
18098
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82003"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:37:31.231393"], ["updated_at", "2016-06-13 20:37:31.231393"]]
18099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18100
+  (0.1ms) rollback transaction
18101
+  (0.0ms) begin transaction
18102
+  (0.0ms) SAVEPOINT active_record_1
18103
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82004"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:37:31.233354"], ["updated_at", "2016-06-13 20:37:31.233354"]]
18104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18105
+  (0.1ms) rollback transaction
18106
+  (0.0ms) begin transaction
18107
+  (0.0ms) SAVEPOINT active_record_1
18108
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82005"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:37:31.235172"], ["updated_at", "2016-06-13 20:37:31.235172"]]
18109
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18110
+  (0.1ms) rollback transaction
18111
+  (0.0ms) begin transaction
18112
+  (0.0ms) SAVEPOINT active_record_1
18113
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82006"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:37:31.236905"], ["updated_at", "2016-06-13 20:37:31.236905"]]
18114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18115
+  (0.1ms) rollback transaction
18116
+  (0.0ms) begin transaction
18117
+  (0.0ms) SAVEPOINT active_record_1
18118
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82007"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 20:37:31.238592"], ["updated_at", "2016-06-13 20:37:31.238592"]]
18119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18120
+  (0.1ms) rollback transaction
18121
+  (0.3ms) begin transaction
18122
+  (0.1ms) SAVEPOINT active_record_1
18123
+ SQL (0.6ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:29.929963"], ["updated_at", "2016-06-13 21:06:29.929963"]]
18124
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18125
+ Processing by HasVcards::VcardsController#show as HTML
18126
+ Parameters: {"id"=>"1"}
18127
+ HasVcards::Vcard Load (0.2ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
18128
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.2ms)
18129
+ Completed 200 OK in 15ms (Views: 9.8ms | ActiveRecord: 0.2ms)
18130
+  (0.1ms) rollback transaction
18131
+  (0.0ms) begin transaction
18132
+  (0.0ms) SAVEPOINT active_record_1
18133
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:29.954921"], ["updated_at", "2016-06-13 21:06:29.954921"]]
18134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18135
+ Processing by HasVcards::VcardsController#show as HTML
18136
+ Parameters: {"id"=>"1"}
18137
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
18138
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18139
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18140
+  (0.1ms) rollback transaction
18141
+  (0.0ms) begin transaction
18142
+  (0.0ms) SAVEPOINT active_record_1
18143
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:29.966009"], ["updated_at", "2016-06-13 21:06:29.966009"]]
18144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18145
+ Processing by HasVcards::VcardsController#show as HTML
18146
+ Parameters: {"id"=>"1"}
18147
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
18148
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18149
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18150
+  (0.1ms) rollback transaction
18151
+  (0.0ms) begin transaction
18152
+  (0.0ms) SAVEPOINT active_record_1
18153
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:29.972921"], ["updated_at", "2016-06-13 21:06:29.972921"]]
18154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18155
+ Processing by HasVcards::VcardsController#index as HTML
18156
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.2ms)
18157
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
18158
+  (0.1ms) rollback transaction
18159
+  (0.0ms) begin transaction
18160
+  (0.0ms) SAVEPOINT active_record_1
18161
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:29.981083"], ["updated_at", "2016-06-13 21:06:29.981083"]]
18162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18163
+ Processing by HasVcards::VcardsController#index as HTML
18164
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
18165
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18166
+  (0.1ms) rollback transaction
18167
+  (0.0ms) begin transaction
18168
+  (0.0ms) SAVEPOINT active_record_1
18169
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:29.986519"], ["updated_at", "2016-06-13 21:06:29.986519"]]
18170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18171
+ Processing by HasVcards::VcardsController#index as HTML
18172
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
18173
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18174
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards"
18175
+  (0.1ms) rollback transaction
18176
+  (0.0ms) begin transaction
18177
+  (0.1ms) SAVEPOINT active_record_1
18178
+ SQL (0.3ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82001"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 21:06:29.997562"], ["updated_at", "2016-06-13 21:06:29.997562"]]
18179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18180
+  (0.1ms) rollback transaction
18181
+  (0.0ms) begin transaction
18182
+  (0.1ms) SAVEPOINT active_record_1
18183
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82002"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 21:06:29.999934"], ["updated_at", "2016-06-13 21:06:29.999934"]]
18184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18185
+  (0.1ms) rollback transaction
18186
+  (0.0ms) begin transaction
18187
+  (0.0ms) SAVEPOINT active_record_1
18188
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82003"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 21:06:30.001814"], ["updated_at", "2016-06-13 21:06:30.001814"]]
18189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18190
+  (0.1ms) rollback transaction
18191
+  (0.0ms) begin transaction
18192
+  (0.0ms) SAVEPOINT active_record_1
18193
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82004"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 21:06:30.003744"], ["updated_at", "2016-06-13 21:06:30.003744"]]
18194
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18195
+  (0.1ms) rollback transaction
18196
+  (0.0ms) begin transaction
18197
+  (0.0ms) SAVEPOINT active_record_1
18198
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82005"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 21:06:30.012852"], ["updated_at", "2016-06-13 21:06:30.012852"]]
18199
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18200
+  (0.1ms) rollback transaction
18201
+  (0.1ms) begin transaction
18202
+  (0.0ms) SAVEPOINT active_record_1
18203
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82006"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 21:06:30.015325"], ["updated_at", "2016-06-13 21:06:30.015325"]]
18204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18205
+  (0.1ms) rollback transaction
18206
+  (0.0ms) begin transaction
18207
+  (0.0ms) SAVEPOINT active_record_1
18208
+ SQL (0.2ms) INSERT INTO "has_vcards_addresses" ("postal_code", "locality", "street_address", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["postal_code", "82007"], ["locality", "Test Town"], ["street_address", "312 Test Street"], ["created_at", "2016-06-13 21:06:30.017283"], ["updated_at", "2016-06-13 21:06:30.017283"]]
18209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18210
+  (0.1ms) rollback transaction
18211
+  (0.0ms) begin transaction
18212
+  (0.1ms) SAVEPOINT active_record_1
18213
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
18214
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "reference_type", "reference_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["full_name", "Full"], ["reference_type", "Something"], ["reference_id", 1], ["created_at", "2016-06-13 21:06:30.034016"], ["updated_at", "2016-06-13 21:06:30.034016"]]
18215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18216
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."reference_id" = ? AND "has_vcards_vcards"."reference_type" = ? [["reference_id", 1], ["reference_type", "Something"]]
18217
+  (0.1ms) rollback transaction
18218
+  (0.0ms) begin transaction
18219
+  (0.1ms) SAVEPOINT active_record_1
18220
+ SQL (0.2ms) INSERT INTO "somethings" DEFAULT VALUES
18221
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("reference_type", "full_name", "reference_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["reference_type", "Something"], ["full_name", "Full"], ["reference_id", 1], ["created_at", "2016-06-13 21:06:30.043742"], ["updated_at", "2016-06-13 21:06:30.043742"]]
18222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18223
+  (0.1ms) rollback transaction
18224
+  (0.0ms) begin transaction
18225
+  (0.0ms) rollback transaction
18226
+  (0.0ms) begin transaction
18227
+  (0.1ms) rollback transaction
18228
+  (0.0ms) begin transaction
18229
+  (0.0ms) rollback transaction
18230
+  (0.0ms) begin transaction
18231
+  (0.0ms) rollback transaction
18232
+  (0.0ms) begin transaction
18233
+  (0.1ms) SAVEPOINT active_record_1
18234
+ SQL (0.6ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.068400"], ["updated_at", "2016-06-13 21:06:30.068400"]]
18235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18236
+  (0.0ms) SAVEPOINT active_record_1
18237
+ SQL (0.3ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-1"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.072049"], ["updated_at", "2016-06-13 21:06:30.072049"]]
18238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18239
+  (0.1ms) rollback transaction
18240
+  (0.0ms) begin transaction
18241
+  (0.0ms) SAVEPOINT active_record_1
18242
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.075426"], ["updated_at", "2016-06-13 21:06:30.075426"]]
18243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18244
+  (0.0ms) SAVEPOINT active_record_1
18245
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-2"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.077049"], ["updated_at", "2016-06-13 21:06:30.077049"]]
18246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18247
+  (0.0ms) SAVEPOINT active_record_1
18248
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.079053"], ["updated_at", "2016-06-13 21:06:30.079053"]]
18249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18250
+  (0.1ms) rollback transaction
18251
+  (0.0ms) begin transaction
18252
+  (0.0ms) SAVEPOINT active_record_1
18253
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.082203"], ["updated_at", "2016-06-13 21:06:30.082203"]]
18254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18255
+  (0.0ms) SAVEPOINT active_record_1
18256
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-4"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.083837"], ["updated_at", "2016-06-13 21:06:30.083837"]]
18257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18258
+  (0.0ms) SAVEPOINT active_record_1
18259
+ SQL (0.4ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.085799"], ["updated_at", "2016-06-13 21:06:30.085799"]]
18260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18261
+  (0.1ms) rollback transaction
18262
+  (0.0ms) begin transaction
18263
+  (0.0ms) SAVEPOINT active_record_1
18264
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.088778"], ["updated_at", "2016-06-13 21:06:30.088778"]]
18265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18266
+  (0.0ms) SAVEPOINT active_record_1
18267
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-6"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.090189"], ["updated_at", "2016-06-13 21:06:30.090189"]]
18268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18269
+  (0.0ms) SAVEPOINT active_record_1
18270
+ SQL (0.4ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.091713"], ["updated_at", "2016-06-13 21:06:30.091713"]]
18271
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18272
+  (0.1ms) rollback transaction
18273
+  (0.0ms) begin transaction
18274
+  (0.0ms) SAVEPOINT active_record_1
18275
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.094412"], ["updated_at", "2016-06-13 21:06:30.094412"]]
18276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18277
+  (0.0ms) SAVEPOINT active_record_1
18278
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-8"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.095790"], ["updated_at", "2016-06-13 21:06:30.095790"]]
18279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18280
+  (0.0ms) SAVEPOINT active_record_1
18281
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.097302"], ["updated_at", "2016-06-13 21:06:30.097302"]]
18282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18283
+  (0.1ms) rollback transaction
18284
+  (0.0ms) begin transaction
18285
+  (0.0ms) SAVEPOINT active_record_1
18286
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.099464"], ["updated_at", "2016-06-13 21:06:30.099464"]]
18287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18288
+  (0.0ms) SAVEPOINT active_record_1
18289
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-9"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.108157"], ["updated_at", "2016-06-13 21:06:30.108157"]]
18290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18291
+  (0.0ms) SAVEPOINT active_record_1
18292
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.109582"], ["updated_at", "2016-06-13 21:06:30.109582"]]
18293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18294
+  (0.1ms) rollback transaction
18295
+  (0.0ms) begin transaction
18296
+  (0.0ms) SAVEPOINT active_record_1
18297
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.111579"], ["updated_at", "2016-06-13 21:06:30.111579"]]
18298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18299
+  (0.0ms) SAVEPOINT active_record_1
18300
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-10"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.112802"], ["updated_at", "2016-06-13 21:06:30.112802"]]
18301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18302
+  (0.0ms) SAVEPOINT active_record_1
18303
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.114055"], ["updated_at", "2016-06-13 21:06:30.114055"]]
18304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18305
+  (0.1ms) rollback transaction
18306
+  (0.0ms) begin transaction
18307
+  (0.0ms) SAVEPOINT active_record_1
18308
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.115954"], ["updated_at", "2016-06-13 21:06:30.115954"]]
18309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18310
+  (0.0ms) SAVEPOINT active_record_1
18311
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-11"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.117285"], ["updated_at", "2016-06-13 21:06:30.117285"]]
18312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18313
+  (0.0ms) SAVEPOINT active_record_1
18314
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.118525"], ["updated_at", "2016-06-13 21:06:30.118525"]]
18315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18316
+  (0.1ms) rollback transaction
18317
+  (0.0ms) begin transaction
18318
+  (0.0ms) SAVEPOINT active_record_1
18319
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.120449"], ["updated_at", "2016-06-13 21:06:30.120449"]]
18320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18321
+  (0.0ms) SAVEPOINT active_record_1
18322
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-12"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.121638"], ["updated_at", "2016-06-13 21:06:30.121638"]]
18323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18324
+  (0.0ms) SAVEPOINT active_record_1
18325
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.122815"], ["updated_at", "2016-06-13 21:06:30.122815"]]
18326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18327
+  (0.1ms) rollback transaction
18328
+  (0.0ms) begin transaction
18329
+  (0.0ms) SAVEPOINT active_record_1
18330
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.124804"], ["updated_at", "2016-06-13 21:06:30.124804"]]
18331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18332
+  (0.0ms) SAVEPOINT active_record_1
18333
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-13"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.125957"], ["updated_at", "2016-06-13 21:06:30.125957"]]
18334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18335
+  (0.0ms) SAVEPOINT active_record_1
18336
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.127166"], ["updated_at", "2016-06-13 21:06:30.127166"]]
18337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18338
+  (0.1ms) rollback transaction
18339
+  (0.0ms) begin transaction
18340
+  (0.0ms) SAVEPOINT active_record_1
18341
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.128891"], ["updated_at", "2016-06-13 21:06:30.128891"]]
18342
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18343
+  (0.0ms) SAVEPOINT active_record_1
18344
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-14"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.130075"], ["updated_at", "2016-06-13 21:06:30.130075"]]
18345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18346
+  (0.0ms) SAVEPOINT active_record_1
18347
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.131269"], ["updated_at", "2016-06-13 21:06:30.131269"]]
18348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18349
+  (0.1ms) rollback transaction
18350
+  (0.0ms) begin transaction
18351
+  (0.0ms) SAVEPOINT active_record_1
18352
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.133014"], ["updated_at", "2016-06-13 21:06:30.133014"]]
18353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18354
+  (0.0ms) SAVEPOINT active_record_1
18355
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-15"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.134173"], ["updated_at", "2016-06-13 21:06:30.134173"]]
18356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18357
+  (0.0ms) SAVEPOINT active_record_1
18358
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.135378"], ["updated_at", "2016-06-13 21:06:30.135378"]]
18359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18360
+  (0.1ms) rollback transaction
18361
+  (0.0ms) begin transaction
18362
+  (0.0ms) SAVEPOINT active_record_1
18363
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.137402"], ["updated_at", "2016-06-13 21:06:30.137402"]]
18364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18365
+  (0.0ms) SAVEPOINT active_record_1
18366
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-16"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.138559"], ["updated_at", "2016-06-13 21:06:30.138559"]]
18367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18368
+  (0.0ms) SAVEPOINT active_record_1
18369
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.139791"], ["updated_at", "2016-06-13 21:06:30.139791"]]
18370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18371
+  (0.1ms) rollback transaction
18372
+  (0.0ms) begin transaction
18373
+  (0.0ms) SAVEPOINT active_record_1
18374
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.141787"], ["updated_at", "2016-06-13 21:06:30.141787"]]
18375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18376
+  (0.0ms) SAVEPOINT active_record_1
18377
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-17"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.142982"], ["updated_at", "2016-06-13 21:06:30.142982"]]
18378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18379
+  (0.0ms) SAVEPOINT active_record_1
18380
+ SQL (0.0ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.144175"], ["updated_at", "2016-06-13 21:06:30.144175"]]
18381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18382
+  (0.1ms) rollback transaction
18383
+  (0.0ms) begin transaction
18384
+  (0.0ms) SAVEPOINT active_record_1
18385
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.146641"], ["updated_at", "2016-06-13 21:06:30.146641"]]
18386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18387
+  (0.0ms) SAVEPOINT active_record_1
18388
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-18"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.147829"], ["updated_at", "2016-06-13 21:06:30.147829"]]
18389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18390
+ Processing by HasVcards::PhoneNumbersController#show as HTML
18391
+ Parameters: {"id"=>"1"}
18392
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
18393
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18394
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
18395
+  (0.1ms) rollback transaction
18396
+  (0.0ms) begin transaction
18397
+  (0.0ms) SAVEPOINT active_record_1
18398
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.158761"], ["updated_at", "2016-06-13 21:06:30.158761"]]
18399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18400
+  (0.0ms) SAVEPOINT active_record_1
18401
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-19"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.160273"], ["updated_at", "2016-06-13 21:06:30.160273"]]
18402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18403
+ Processing by HasVcards::PhoneNumbersController#show as HTML
18404
+ Parameters: {"id"=>"1"}
18405
+ HasVcards::PhoneNumber Load (0.0ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
18406
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18407
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
18408
+  (0.1ms) rollback transaction
18409
+  (0.0ms) begin transaction
18410
+  (0.0ms) SAVEPOINT active_record_1
18411
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.165984"], ["updated_at", "2016-06-13 21:06:30.165984"]]
18412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18413
+  (0.0ms) SAVEPOINT active_record_1
18414
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-20"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.167344"], ["updated_at", "2016-06-13 21:06:30.167344"]]
18415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18416
+ Processing by HasVcards::PhoneNumbersController#show as HTML
18417
+ Parameters: {"id"=>"1"}
18418
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."id" = ? LIMIT 1 [["id", 1]]
18419
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/show.html.haml within layouts/application (0.0ms)
18420
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms)
18421
+  (0.1ms) rollback transaction
18422
+  (0.0ms) begin transaction
18423
+  (0.0ms) SAVEPOINT active_record_1
18424
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.173099"], ["updated_at", "2016-06-13 21:06:30.173099"]]
18425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18426
+  (0.0ms) SAVEPOINT active_record_1
18427
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-21"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.174412"], ["updated_at", "2016-06-13 21:06:30.174412"]]
18428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18429
+ Processing by HasVcards::PhoneNumbersController#index as HTML
18430
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
18431
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
18432
+  (0.1ms) rollback transaction
18433
+  (0.0ms) begin transaction
18434
+  (0.0ms) SAVEPOINT active_record_1
18435
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.180977"], ["updated_at", "2016-06-13 21:06:30.180977"]]
18436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18437
+  (0.0ms) SAVEPOINT active_record_1
18438
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-22"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.182265"], ["updated_at", "2016-06-13 21:06:30.182265"]]
18439
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18440
+ Processing by HasVcards::PhoneNumbersController#index as HTML
18441
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
18442
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18443
+  (0.1ms) rollback transaction
18444
+  (0.0ms) begin transaction
18445
+  (0.0ms) SAVEPOINT active_record_1
18446
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.187839"], ["updated_at", "2016-06-13 21:06:30.187839"]]
18447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18448
+  (0.0ms) SAVEPOINT active_record_1
18449
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-23"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.189258"], ["updated_at", "2016-06-13 21:06:30.189258"]]
18450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18451
+ Processing by HasVcards::PhoneNumbersController#index as HTML
18452
+ Rendered /home/shuerlimann/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/i18n_rails_helpers-2.0.1/app/views/application/index.html.haml within layouts/application (0.0ms)
18453
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
18454
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers"
18455
+  (0.1ms) rollback transaction
18456
+  (0.0ms) begin transaction
18457
+  (0.0ms) rollback transaction
18458
+  (0.0ms) begin transaction
18459
+  (0.0ms) rollback transaction
18460
+  (0.0ms) begin transaction
18461
+  (0.0ms) rollback transaction
18462
+  (0.0ms) begin transaction
18463
+  (0.0ms) rollback transaction
18464
+  (0.0ms) begin transaction
18465
+  (0.0ms) rollback transaction
18466
+  (0.0ms) begin transaction
18467
+  (0.0ms) rollback transaction
18468
+  (0.0ms) begin transaction
18469
+  (0.0ms) rollback transaction
18470
+  (0.0ms) begin transaction
18471
+  (0.0ms) rollback transaction
18472
+  (0.0ms) begin transaction
18473
+  (0.0ms) rollback transaction
18474
+  (0.0ms) begin transaction
18475
+  (0.0ms) rollback transaction
18476
+  (0.0ms) begin transaction
18477
+  (0.0ms) rollback transaction
18478
+  (0.0ms) begin transaction
18479
+  (0.0ms) rollback transaction
18480
+  (0.1ms) begin transaction
18481
+  (0.0ms) rollback transaction
18482
+  (0.0ms) begin transaction
18483
+  (0.0ms) rollback transaction
18484
+  (0.0ms) begin transaction
18485
+  (0.0ms) SAVEPOINT active_record_1
18486
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"], ["created_at", "2016-06-13 21:06:30.214942"], ["updated_at", "2016-06-13 21:06:30.214942"]]
18487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18488
+ HasVcards::Vcard Load (0.0ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE "has_vcards_vcards"."id" = ? LIMIT 1 [["id", 1]]
18489
+  (0.1ms) rollback transaction
18490
+  (0.0ms) begin transaction
18491
+  (0.0ms) rollback transaction
18492
+  (0.0ms) begin transaction
18493
+  (0.0ms) rollback transaction
18494
+  (0.0ms) begin transaction
18495
+  (0.0ms) rollback transaction
18496
+  (0.0ms) begin transaction
18497
+  (0.0ms) rollback transaction
18498
+  (0.0ms) begin transaction
18499
+  (0.0ms) rollback transaction
18500
+  (0.0ms) begin transaction
18501
+  (0.0ms) rollback transaction
18502
+  (0.0ms) begin transaction
18503
+  (0.0ms) SAVEPOINT active_record_1
18504
+ SQL (0.3ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "quack"], ["created_at", "2016-06-13 21:06:30.223850"], ["updated_at", "2016-06-13 21:06:30.223850"]]
18505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18506
+  (0.0ms) SAVEPOINT active_record_1
18507
+ SQL (0.1ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Andi Peter"], ["created_at", "2016-06-13 21:06:30.225154"], ["updated_at", "2016-06-13 21:06:30.225154"]]
18508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18509
+ HasVcards::Vcard Load (0.1ms) SELECT "has_vcards_vcards".* FROM "has_vcards_vcards" WHERE (full_name LIKE 'quack' OR family_name LIKE 'quack' OR given_name LIKE 'quack' OR nickname LIKE 'quack')
18510
+  (0.1ms) rollback transaction
18511
+  (0.0ms) begin transaction
18512
+  (0.0ms) SAVEPOINT active_record_1
18513
+ SQL (0.2ms) INSERT INTO "has_vcards_vcards" ("full_name", "created_at", "updated_at") VALUES (?, ?, ?) [["full_name", "Ben Hur"], ["created_at", "2016-06-13 21:06:30.227664"], ["updated_at", "2016-06-13 21:06:30.227664"]]
18514
+ SQL (0.2ms) INSERT INTO "has_vcards_phone_numbers" ("number", "phone_number_type", "vcard_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-24"], ["phone_number_type", "phone"], ["vcard_id", 1], ["created_at", "2016-06-13 21:06:30.228542"], ["updated_at", "2016-06-13 21:06:30.228542"]]
18515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18516
+  (0.0ms) SAVEPOINT active_record_1
18517
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-25"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.229756"], ["updated_at", "2016-06-13 21:06:30.229756"]]
18518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18519
+  (0.0ms) SAVEPOINT active_record_1
18520
+ SQL (0.1ms) INSERT INTO "has_vcards_phone_numbers" ("number", "vcard_id", "phone_number_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["number", "+41 000-111-26"], ["vcard_id", 1], ["phone_number_type", "phone"], ["created_at", "2016-06-13 21:06:30.230850"], ["updated_at", "2016-06-13 21:06:30.230850"]]
18521
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18522
+  (0.1ms) SELECT COUNT(*) FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
18523
+ HasVcards::PhoneNumber Load (0.1ms) SELECT "has_vcards_phone_numbers".* FROM "has_vcards_phone_numbers" WHERE "has_vcards_phone_numbers"."vcard_id" = ? [["vcard_id", 1]]
18524
+  (0.1ms) rollback transaction
18525
+  (0.0ms) begin transaction
18526
+  (0.0ms) rollback transaction