activerecord_translatable 0.0.2 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0d0a2bb1ba9aa75761f54be04bfddf1c8d981849
4
- data.tar.gz: 48473b568dc9efb170db0432700b5edacee7b829
3
+ metadata.gz: 4a2305935744b3ad79c98ae02f539b3f46233727
4
+ data.tar.gz: 7da5ed33858f314a7721bc663dd3b09cb352a21d
5
5
  SHA512:
6
- metadata.gz: ec2b82cb27170bef276f5547e7a6c549118ef987c530cadad1941d42846fd019fc70847e1fa2f9c6e8fc2137e843830f8388839ce8035e3ae887087cc1799560
7
- data.tar.gz: 4b063afdc3ab348cff5cdbd4127f24848d486a9e3e595af859ecd8214db5681d655716fd0c7ed4241bf8ec0aa16af34e2184e036662eb62577101ef5cd427e1c
6
+ metadata.gz: a386b24a17d2bfbb1b910fc0cbbffeccbc5488105a29b14de5ec2e192efbb1ddd6784b302076e4b08835d2c90cabc4001b1717e63dfd882404cf3f5330ea2477
7
+ data.tar.gz: e197e4a95c6efc56019718391de3e0877b7cea89fe7e0ad0416339aa41189941584e3276c81bf940fc9352c84cfcc7b39c98e73cf2dd1faf9f502f141a57b8b0
@@ -1,62 +1,46 @@
1
1
  module ActiveRecordTranslatable
2
+ # = Add tranlatable attributes to ActiveRecord models
3
+ #
4
+ # ActiveRecordTranslatable add +translate+ method to ActiveRecord::Base
5
+ # which is used to declare attributes as translatable
6
+ #
7
+ # Saving and loading translations works by using +<attribute>_<local>+ to
8
+ # read and write the attribute
9
+ #
10
+ # class Thing
11
+ # translate :name
12
+ # end
13
+ #
14
+ # @thing = Thing.new(name: 'Thing', name_de: 'Ding')
15
+ # @thing.name # => Thing
16
+ # @thing.name_de # => Ding
17
+ #
18
+ # It works in conjunction with I18n.local
19
+ #
20
+ # I18n.locale = :de
21
+ # @thing.name # => Ding
22
+ #
23
+ # Translations are stored the setup I18n.backend
24
+
2
25
  extend ActiveSupport::Concern
3
26
 
4
- attr_accessor :translations
27
+ ##
28
+ # Translatable attributes for this model
5
29
 
6
30
  def translatable
7
31
  self._translatable[base_name]
8
32
  end
9
33
 
34
+ ##
35
+ # Locales available for this model
36
+ # a locale is available if at least one attribute is present in given locale
37
+
10
38
  def available_locales
11
39
  self.locales.map { |locale| locale.to_sym }
12
40
  end
13
41
 
14
- def setup_locale(locale)
15
- locales = self.locales || []
16
- locales << locale.to_s
17
- self.locales = locales.uniq
18
- end
19
-
20
- def translations
21
- @translations ||= Hash.new { |h,k| h[k] = {} }
22
- end
23
-
24
- def base_name
25
- self.class.name.downcase
26
- end
27
-
28
- def translation(attribute, locale = I18n.locale)
29
- begin
30
- translation = translations.fetch(locale).fetch(attribute)
31
- rescue KeyError
32
- _get_stored_translation(attribute, locale)
33
- end
34
- end
35
-
36
- def _get_stored_translation(attribute, locale)
37
- begin
38
- translation = I18n.t("#{base_name}.#{attribute}-#{self.id}", locale: locale, raise: true)
39
- setup_locale(locale)
40
- translations[locale][attribute] = translation
41
- rescue I18n::MissingTranslationData
42
- nil
43
- end
44
- end
45
-
46
- def set_translation(attribute, value, locale = I18n.locale)
47
- setup_locale(locale)
48
- translations[locale][attribute] = value
49
- end
50
-
51
- def write_translations
52
- return if translations.empty? # there are no translations to be saved
53
-
54
- translations.each do |locale, trans|
55
- trans.each do |attribute, value|
56
- I18n.backend.store_translations(locale, { "#{base_name}.#{attribute}-#{self.id}" => value }, escape: false)
57
- end
58
- end
59
- end
42
+ ##
43
+ # Define accessores
60
44
 
61
45
  def method_missing(method_name, *arguments, &block)
62
46
  translatable.each do |attribute|
@@ -90,17 +74,28 @@ module ActiveRecordTranslatable
90
74
  false
91
75
  end
92
76
 
77
+
93
78
  included do
94
79
  after_save :write_translations
95
80
  cattr_accessor :_translatable
96
81
  end
97
82
 
98
83
  module ClassMethods
84
+ ##
85
+ # Define attribute as translatable
86
+ #
87
+ # class Thing < ActiveRecord::Base
88
+ # translate :name
89
+ # end
90
+
99
91
  def translate(*attributes)
100
92
  self._translatable ||= Hash.new { |h,k| h[k] = [] }
101
93
  self._translatable[base_name] = translatable.concat(attributes).uniq
102
94
  end
103
95
 
96
+ ##
97
+ # Attributes defined as translatable
98
+
104
99
  def translatable
105
100
  self._translatable[base_name] ||= []
106
101
  end
@@ -111,4 +106,52 @@ module ActiveRecordTranslatable
111
106
  end
112
107
  end
113
108
 
109
+ private
110
+ def setup_locale(locale)
111
+ locales = self.locales || []
112
+ locales << locale.to_s
113
+ self.locales = locales.uniq
114
+ end
115
+
116
+ def translations
117
+ @translations ||= Hash.new { |h,k| h[k] = {} }
118
+ end
119
+
120
+ def base_name
121
+ self.class.name.downcase
122
+ end
123
+
124
+ def translation(attribute, locale = I18n.locale)
125
+ begin
126
+ translation = translations.fetch(locale).fetch(attribute)
127
+ rescue KeyError
128
+ _get_stored_translation(attribute, locale)
129
+ end
130
+ end
131
+
132
+ def _get_stored_translation(attribute, locale)
133
+ begin
134
+ translation = I18n.t("#{base_name}.#{attribute}-#{self.id}", locale: locale, raise: true)
135
+ setup_locale(locale)
136
+ translations[locale][attribute] = translation
137
+ rescue I18n::MissingTranslationData
138
+ nil
139
+ end
140
+ end
141
+
142
+ def set_translation(attribute, value, locale = I18n.locale)
143
+ setup_locale(locale)
144
+ translations[locale][attribute] = value
145
+ end
146
+
147
+ def write_translations
148
+ return if translations.empty? # there are no translations to be saved
149
+
150
+ translations.each do |locale, trans|
151
+ trans.each do |attribute, value|
152
+ I18n.backend.store_translations(locale, { "#{base_name}.#{attribute}-#{self.id}" => value }, escape: false)
153
+ end
154
+ end
155
+ end
156
+
114
157
  end
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module ActiveRecordTranslatable
2
2
 
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.9" # :nodoc:
4
4
 
5
5
  end
@@ -2,25 +2,34 @@ require 'spec_helper'
2
2
 
3
3
  describe "ActiveRecordTranslateable" do
4
4
 
5
- it "should add name to translateable" do
6
- Something.translatable.should include(:name)
5
+ it "makes name translateable" do
6
+ Something.class_eval { translate :foo }
7
+ Something.translatable.should include(:foo)
7
8
  end
8
9
 
9
10
  context "class without translations" do
10
- it "should save" do
11
+ it "saves" do
11
12
  foo = Foo.new
12
13
  foo.save.should be_true
13
14
  end
14
- it "should load" do
15
+ it "loads" do
15
16
  foo = Foo.create!
16
17
  Foo.find(foo.id).should_not be_nil
17
18
  end
18
19
  end
19
20
 
21
+ context "custom created methods" do
22
+ it "responds to translated attributes" do
23
+ something = Something.new
24
+ something.should respond_to(:name)
25
+ something.should respond_to(:name=)
26
+ something.should respond_to(:name_de)
27
+ something.should respond_to(:name_de=)
28
+ end
29
+ end
20
30
 
21
- context "translations" do
31
+ context "attributes" do
22
32
  before(:each) do
23
- @something = Something.create!(name: "Something")
24
33
  @locale = I18n.locale
25
34
  end
26
35
 
@@ -28,34 +37,44 @@ describe "ActiveRecordTranslateable" do
28
37
  I18n.locale = @locale
29
38
  end
30
39
 
31
- it "should get the translation from stored translations" do
32
- @something.set_translation("name", "Etwas", :de)
33
- @something.translations[:de]["name"].should == "Etwas"
40
+ it "read/writes by hash assignment" do
41
+ something = Something.new(name: "Something", name_de: "Etwas")
42
+ something.name.should == "Something"
43
+ something.name_de.should == "Etwas"
34
44
  end
35
45
 
36
- it "should set the translation to the stored translations" do
37
- @something.set_translation("name", "Etwas", :de)
38
- @something.translation("name", :de).should == "Etwas"
46
+ it "read/writes from database" do
47
+ something = Something.create!(name: "Something", name_de: "Etwas")
48
+ something.reload
49
+ something.name.should == "Something"
50
+ something.name_de.should == "Etwas"
39
51
  end
40
52
 
41
- it "should get the translation for the default I18n locale" do
53
+ it "reads by locale" do
54
+ something = Something.create!(name_de: "Etwas")
42
55
  I18n.locale = :de
43
- @something.set_translation("name", "Etwas")
44
- @something.translation("name").should == "Etwas"
56
+ something.name.should == "Etwas"
45
57
  end
46
58
 
47
- it "should set the translation for the default I18n locale" do
59
+ it "writes by locale" do
48
60
  I18n.locale = :de
49
- @something.set_translation("name", "Etwas")
50
- @something.translation("name", :de).should == "Etwas"
61
+ something = Something.create!(name: "Etwas", name_en: "Something")
62
+ I18n.locale = :en
63
+ something.name_de.should == "Etwas"
64
+ something.name.should == "Something"
51
65
  end
66
+ end
52
67
 
53
- it "should write the stored translations to the backend" do
68
+ context "store translations" do
69
+ let(:something) { Something.create(name: "Something") }
70
+
71
+ it "writes stored translations to the backend" do
72
+ i18n_key = "something.name-#{something.id}"
54
73
  backend = double("Backend")
55
74
  I18n.stub(:backend).and_return(backend)
56
- backend.should_receive(:store_translations).
57
- with(:en, { "something.name-#{@something.id}" => "Something" }, escape: false)
58
- @something.write_translations
75
+ backend.should_receive(:store_translations)
76
+ .with(:en, { i18n_key => "Something" }, escape: false)
77
+ something.save
59
78
  end
60
79
 
61
80
  it "should save the model without translations" do
@@ -63,76 +82,43 @@ describe "ActiveRecordTranslateable" do
63
82
  something.save.should be_true
64
83
  end
65
84
 
85
+ it "should not include a read locale unless set to something" do
86
+ something.name_gr
87
+ something.locales.should_not include("gr")
88
+ end
66
89
  end
67
90
 
68
- context "trigger save on model change" do
91
+ context "translation store" do
69
92
  before(:each) do
70
93
  @backend = double("Backend")
71
94
  I18n.stub(:backend).and_return(@backend)
72
95
  end
73
- it "should save translations on save" do
96
+ it "is called on save" do
74
97
  @backend.should_receive(:store_translations).twice
75
98
  Something.new(name: 'something', name_de: 'etwas').save
76
99
  end
77
100
 
78
- it "should save translations on create" do
101
+ it "is called on create" do
79
102
  @backend.should_receive(:store_translations).twice
80
103
  Something.create(name: 'something', name_de: 'etwas')
81
104
  end
82
105
 
83
- it "should save translations on update" do
106
+ it "is called on update" do
84
107
  @backend.should_receive(:store_translations).exactly(4)
85
108
  sth = Something.create(name: 'something_old', name_de: 'etwas_old')
86
109
  sth.update_attributes(name: 'something', name_de: 'etwas')
87
110
  end
88
111
  end
89
112
 
90
- context "don't set locales on read" do
91
- let(:something) { Something.create!(name: "Something") }
92
-
93
- it "should not include a read locale unless set to something" do
94
- something.name_gr
95
- something.locales.should_not include("gr")
96
- end
97
- end
98
-
99
- context "custom created methods" do
100
- let(:something) { Something.create!(name: "Something") }
101
-
102
- it "should respond to translated attributes" do
103
- something.should respond_to(:name)
104
- something.should respond_to(:name=)
105
- something.should respond_to(:name_de)
106
- something.should respond_to(:name_de=)
107
- end
108
-
109
- it "should get the translated attributes" do
113
+ context "db array support" do
114
+ it "works with native support" do
110
115
  something = Something.create!(name: "Something", name_de: "Etwas")
111
- something_from_db = Something.find(something.id)
112
- something_from_db.name.should == "Something"
113
- something_from_db.name_de.should == "Etwas"
116
+ something.reload.available_locales.should include(:en, :de)
114
117
  end
115
118
 
116
- end
117
-
118
- context "locales with db array support" do
119
- let(:something) { Something.create!(name: "Something") }
120
-
121
- it "should respond with available locales" do
122
- something.available_locales.should include(:en)
123
- something.name_de = "Etwas"
124
- something.available_locales.should include(:en, :de)
119
+ it "works with serialize" do
120
+ thing = Noarraything.create!(name: "thing", name_de: "ding")
121
+ thing.reload.available_locales.should include(:en, :de)
125
122
  end
126
-
127
123
  end
128
-
129
- context "locales without db array support" do
130
- let(:thing) { Noarraything.create!(name: "thing", name_de: "ding") }
131
-
132
- it "should store the locales as array" do
133
- locales = thing.locales
134
- thing.reload.locales.should == locales
135
- end
136
- end
137
-
138
124
  end
@@ -6036,3 +6036,1791 @@ Connecting to database specified by database.yml
6036
6036
   (0.3ms) RELEASE SAVEPOINT active_record_1
6037
6037
  Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 25]]
6038
6038
   (0.2ms) ROLLBACK
6039
+ Connecting to database specified by database.yml
6040
+  (0.1ms) BEGIN
6041
+  (0.2ms) ROLLBACK
6042
+  (0.1ms) BEGIN
6043
+  (0.3ms) SAVEPOINT active_record_1
6044
+ SQL (8.9ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6046
+  (0.1ms) ROLLBACK
6047
+  (0.1ms) BEGIN
6048
+  (0.1ms) SAVEPOINT active_record_1
6049
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6050
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6051
+ Foo Load (1.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 52]]
6052
+  (0.3ms) ROLLBACK
6053
+  (0.1ms) BEGIN
6054
+  (0.2ms) SAVEPOINT active_record_1
6055
+ SQL (3.9ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6056
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6057
+  (0.1ms) ROLLBACK
6058
+  (0.1ms) BEGIN
6059
+  (0.1ms) SAVEPOINT active_record_1
6060
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6062
+  (0.1ms) ROLLBACK
6063
+  (0.1ms) BEGIN
6064
+  (0.1ms) SAVEPOINT active_record_1
6065
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6066
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6067
+  (0.2ms) ROLLBACK
6068
+  (0.1ms) BEGIN
6069
+  (0.1ms) SAVEPOINT active_record_1
6070
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6072
+  (0.1ms) ROLLBACK
6073
+  (0.1ms) BEGIN
6074
+  (0.1ms) SAVEPOINT active_record_1
6075
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6076
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6077
+  (0.2ms) ROLLBACK
6078
+  (0.2ms) BEGIN
6079
+  (0.1ms) SAVEPOINT active_record_1
6080
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6081
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6082
+  (0.1ms) SAVEPOINT active_record_1
6083
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6084
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6085
+  (0.1ms) ROLLBACK
6086
+  (0.1ms) BEGIN
6087
+  (0.2ms) SAVEPOINT active_record_1
6088
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6089
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6090
+  (0.1ms) ROLLBACK
6091
+  (0.1ms) BEGIN
6092
+  (0.1ms) SAVEPOINT active_record_1
6093
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6094
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6095
+  (0.1ms) ROLLBACK
6096
+  (0.1ms) BEGIN
6097
+  (0.1ms) SAVEPOINT active_record_1
6098
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6099
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6100
+  (0.1ms) SAVEPOINT active_record_1
6101
+  (0.5ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 18:52:08.909799' WHERE "somethings"."id" = 313
6102
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6103
+  (0.2ms) ROLLBACK
6104
+  (0.1ms) BEGIN
6105
+  (0.1ms) SAVEPOINT active_record_1
6106
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6107
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6108
+  (0.1ms) ROLLBACK
6109
+  (0.1ms) BEGIN
6110
+  (0.2ms) SAVEPOINT active_record_1
6111
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6113
+  (0.3ms) ROLLBACK
6114
+  (0.1ms) BEGIN
6115
+  (0.1ms) SAVEPOINT active_record_1
6116
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6118
+ Something Load (0.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 316]]
6119
+  (0.2ms) ROLLBACK
6120
+  (0.1ms) BEGIN
6121
+  (0.1ms) SAVEPOINT active_record_1
6122
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6123
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6124
+  (0.1ms) ROLLBACK
6125
+  (0.1ms) BEGIN
6126
+  (0.3ms) SAVEPOINT active_record_1
6127
+ SQL (2.6ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 18:52:08 UTC +00:00]]
6128
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6129
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 26]]
6130
+  (0.2ms) ROLLBACK
6131
+ Connecting to database specified by database.yml
6132
+  (0.2ms) BEGIN
6133
+  (0.2ms) ROLLBACK
6134
+  (0.1ms) BEGIN
6135
+  (0.3ms) SAVEPOINT active_record_1
6136
+ SQL (35.8ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00]]
6137
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6138
+  (0.2ms) ROLLBACK
6139
+  (0.1ms) BEGIN
6140
+  (0.1ms) SAVEPOINT active_record_1
6141
+ SQL (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00]]
6142
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6143
+ Foo Load (0.9ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 54]]
6144
+  (0.2ms) ROLLBACK
6145
+  (0.1ms) BEGIN
6146
+  (0.2ms) SAVEPOINT active_record_1
6147
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00]]
6148
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6149
+  (0.1ms) ROLLBACK
6150
+  (0.1ms) BEGIN
6151
+  (0.1ms) SAVEPOINT active_record_1
6152
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00]]
6153
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6154
+  (0.1ms) ROLLBACK
6155
+  (0.1ms) BEGIN
6156
+  (0.2ms) SAVEPOINT active_record_1
6157
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:37 UTC +00:00]]
6158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6159
+  (0.1ms) ROLLBACK
6160
+  (0.1ms) BEGIN
6161
+  (0.1ms) SAVEPOINT active_record_1
6162
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6164
+  (0.2ms) ROLLBACK
6165
+  (0.1ms) BEGIN
6166
+  (0.2ms) SAVEPOINT active_record_1
6167
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6168
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6169
+  (0.2ms) ROLLBACK
6170
+  (0.1ms) BEGIN
6171
+  (0.1ms) SAVEPOINT active_record_1
6172
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6174
+  (0.1ms) SAVEPOINT active_record_1
6175
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6177
+  (0.1ms) ROLLBACK
6178
+  (0.1ms) BEGIN
6179
+  (0.1ms) SAVEPOINT active_record_1
6180
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6181
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6182
+  (0.1ms) ROLLBACK
6183
+  (0.1ms) BEGIN
6184
+  (0.1ms) SAVEPOINT active_record_1
6185
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6186
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6187
+  (0.1ms) ROLLBACK
6188
+  (0.1ms) BEGIN
6189
+  (0.2ms) SAVEPOINT active_record_1
6190
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6191
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6192
+  (0.1ms) SAVEPOINT active_record_1
6193
+  (0.6ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 18:52:38.027546' WHERE "somethings"."id" = 327
6194
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6195
+  (0.2ms) ROLLBACK
6196
+  (0.1ms) BEGIN
6197
+  (0.1ms) SAVEPOINT active_record_1
6198
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6200
+  (0.1ms) ROLLBACK
6201
+  (0.1ms) BEGIN
6202
+  (0.1ms) SAVEPOINT active_record_1
6203
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6205
+  (0.2ms) ROLLBACK
6206
+  (0.2ms) BEGIN
6207
+  (0.2ms) SAVEPOINT active_record_1
6208
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6209
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6210
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 330]]
6211
+  (0.2ms) ROLLBACK
6212
+  (0.1ms) BEGIN
6213
+  (0.1ms) SAVEPOINT active_record_1
6214
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6216
+  (0.1ms) ROLLBACK
6217
+  (0.1ms) BEGIN
6218
+  (0.2ms) SAVEPOINT active_record_1
6219
+ SQL (1.2ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 18:52:38 UTC +00:00]]
6220
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6221
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 27]]
6222
+  (0.2ms) ROLLBACK
6223
+ Connecting to database specified by database.yml
6224
+  (0.1ms) BEGIN
6225
+  (0.3ms) ROLLBACK
6226
+  (0.1ms) BEGIN
6227
+  (0.2ms) SAVEPOINT active_record_1
6228
+ SQL (4.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6229
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6230
+  (0.2ms) ROLLBACK
6231
+  (0.1ms) BEGIN
6232
+  (0.1ms) SAVEPOINT active_record_1
6233
+ SQL (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6234
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6235
+ Foo Load (0.8ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 56]]
6236
+  (0.3ms) ROLLBACK
6237
+  (0.1ms) BEGIN
6238
+  (0.3ms) SAVEPOINT active_record_1
6239
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6240
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6241
+  (0.2ms) ROLLBACK
6242
+  (0.1ms) BEGIN
6243
+  (0.1ms) SAVEPOINT active_record_1
6244
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6245
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6246
+ Something Load (0.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 333]]
6247
+  (0.3ms) ROLLBACK
6248
+  (0.1ms) BEGIN
6249
+  (0.1ms) SAVEPOINT active_record_1
6250
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6251
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6252
+  (0.1ms) ROLLBACK
6253
+  (0.1ms) BEGIN
6254
+  (0.2ms) SAVEPOINT active_record_1
6255
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6257
+  (0.1ms) ROLLBACK
6258
+  (0.1ms) BEGIN
6259
+  (0.1ms) SAVEPOINT active_record_1
6260
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6262
+  (0.1ms) ROLLBACK
6263
+  (0.1ms) BEGIN
6264
+  (0.1ms) SAVEPOINT active_record_1
6265
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6267
+  (0.1ms) ROLLBACK
6268
+  (0.1ms) BEGIN
6269
+  (0.1ms) SAVEPOINT active_record_1
6270
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6272
+  (0.1ms) ROLLBACK
6273
+  (0.1ms) BEGIN
6274
+  (0.1ms) SAVEPOINT active_record_1
6275
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6277
+  (0.1ms) SAVEPOINT active_record_1
6278
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6280
+  (0.1ms) ROLLBACK
6281
+  (0.1ms) BEGIN
6282
+  (0.1ms) SAVEPOINT active_record_1
6283
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6284
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6285
+  (0.1ms) ROLLBACK
6286
+  (0.1ms) BEGIN
6287
+  (0.2ms) SAVEPOINT active_record_1
6288
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6289
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6290
+  (0.1ms) ROLLBACK
6291
+  (0.1ms) BEGIN
6292
+  (0.2ms) SAVEPOINT active_record_1
6293
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6294
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6295
+  (0.1ms) SAVEPOINT active_record_1
6296
+  (1.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 18:56:31.615960' WHERE "somethings"."id" = 343
6297
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6298
+  (0.1ms) ROLLBACK
6299
+  (0.1ms) BEGIN
6300
+  (0.1ms) SAVEPOINT active_record_1
6301
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6302
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6303
+  (0.2ms) ROLLBACK
6304
+  (0.1ms) BEGIN
6305
+  (0.1ms) SAVEPOINT active_record_1
6306
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6308
+  (0.1ms) ROLLBACK
6309
+  (0.1ms) BEGIN
6310
+  (0.3ms) SAVEPOINT active_record_1
6311
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 18:56:31 UTC +00:00]]
6312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6313
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 28]]
6314
+  (0.2ms) ROLLBACK
6315
+ Connecting to database specified by database.yml
6316
+  (0.1ms) BEGIN
6317
+  (0.2ms) ROLLBACK
6318
+  (0.1ms) BEGIN
6319
+  (0.2ms) SAVEPOINT active_record_1
6320
+ SQL (8.1ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:00 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:06:00 UTC +00:00]]
6321
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6322
+  (0.1ms) ROLLBACK
6323
+  (0.1ms) BEGIN
6324
+  (0.2ms) SAVEPOINT active_record_1
6325
+ SQL (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:00 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:06:00 UTC +00:00]]
6326
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6327
+ Foo Load (1.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 58]]
6328
+  (0.2ms) ROLLBACK
6329
+  (0.1ms) BEGIN
6330
+  (0.3ms) ROLLBACK
6331
+  (0.1ms) BEGIN
6332
+  (0.1ms) ROLLBACK
6333
+  (0.1ms) BEGIN
6334
+  (0.1ms) ROLLBACK
6335
+  (0.1ms) BEGIN
6336
+  (0.1ms) SAVEPOINT active_record_1
6337
+ SQL (3.2ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6338
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6339
+  (0.1ms) ROLLBACK
6340
+  (0.1ms) BEGIN
6341
+  (0.1ms) SAVEPOINT active_record_1
6342
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6344
+  (0.1ms) ROLLBACK
6345
+  (0.1ms) BEGIN
6346
+  (0.1ms) SAVEPOINT active_record_1
6347
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6348
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6349
+  (0.1ms) SAVEPOINT active_record_1
6350
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6351
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6352
+  (0.1ms) ROLLBACK
6353
+  (0.1ms) BEGIN
6354
+  (0.1ms) SAVEPOINT active_record_1
6355
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6357
+  (0.1ms) ROLLBACK
6358
+  (0.1ms) BEGIN
6359
+  (0.1ms) SAVEPOINT active_record_1
6360
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6361
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6362
+  (0.1ms) ROLLBACK
6363
+  (0.2ms) BEGIN
6364
+  (0.2ms) SAVEPOINT active_record_1
6365
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6366
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6367
+  (0.1ms) SAVEPOINT active_record_1
6368
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:06:01.035670' WHERE "somethings"."id" = 352
6369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6370
+  (0.1ms) ROLLBACK
6371
+  (0.1ms) BEGIN
6372
+  (0.1ms) SAVEPOINT active_record_1
6373
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6375
+  (0.1ms) ROLLBACK
6376
+  (0.1ms) BEGIN
6377
+  (0.1ms) SAVEPOINT active_record_1
6378
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6379
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6380
+  (0.1ms) ROLLBACK
6381
+  (0.1ms) BEGIN
6382
+  (0.2ms) SAVEPOINT active_record_1
6383
+ SQL (2.1ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:06:01 UTC +00:00]]
6384
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6385
+ Noarraything Load (0.7ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 29]]
6386
+  (0.2ms) ROLLBACK
6387
+ Connecting to database specified by database.yml
6388
+  (0.1ms) BEGIN
6389
+  (0.2ms) ROLLBACK
6390
+  (0.1ms) BEGIN
6391
+  (0.2ms) SAVEPOINT active_record_1
6392
+ SQL (3.9ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6394
+  (0.1ms) ROLLBACK
6395
+  (0.1ms) BEGIN
6396
+  (0.1ms) SAVEPOINT active_record_1
6397
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6398
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6399
+ Foo Load (0.7ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 60]]
6400
+  (0.2ms) ROLLBACK
6401
+  (0.1ms) BEGIN
6402
+  (0.3ms) ROLLBACK
6403
+  (0.1ms) BEGIN
6404
+  (0.1ms) ROLLBACK
6405
+  (0.1ms) BEGIN
6406
+  (0.1ms) ROLLBACK
6407
+  (0.1ms) BEGIN
6408
+  (0.1ms) SAVEPOINT active_record_1
6409
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6410
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6411
+  (0.1ms) ROLLBACK
6412
+  (0.1ms) BEGIN
6413
+  (0.1ms) SAVEPOINT active_record_1
6414
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6415
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6416
+  (0.2ms) ROLLBACK
6417
+  (0.1ms) BEGIN
6418
+  (0.1ms) SAVEPOINT active_record_1
6419
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6421
+  (0.1ms) SAVEPOINT active_record_1
6422
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6424
+  (0.1ms) ROLLBACK
6425
+  (0.1ms) BEGIN
6426
+  (0.1ms) SAVEPOINT active_record_1
6427
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6428
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6429
+  (0.2ms) ROLLBACK
6430
+  (0.1ms) BEGIN
6431
+  (0.2ms) SAVEPOINT active_record_1
6432
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6433
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6434
+  (0.1ms) ROLLBACK
6435
+  (0.1ms) BEGIN
6436
+  (0.2ms) SAVEPOINT active_record_1
6437
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6438
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6439
+  (0.1ms) SAVEPOINT active_record_1
6440
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:06:22.545005' WHERE "somethings"."id" = 361
6441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6442
+  (0.1ms) ROLLBACK
6443
+  (0.1ms) BEGIN
6444
+  (0.2ms) SAVEPOINT active_record_1
6445
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6446
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6447
+  (0.1ms) ROLLBACK
6448
+  (0.1ms) BEGIN
6449
+  (0.1ms) SAVEPOINT active_record_1
6450
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6452
+  (0.1ms) ROLLBACK
6453
+  (0.1ms) BEGIN
6454
+  (0.2ms) SAVEPOINT active_record_1
6455
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:06:22 UTC +00:00]]
6456
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6457
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 30]]
6458
+  (0.1ms) ROLLBACK
6459
+ Connecting to database specified by database.yml
6460
+  (0.1ms) BEGIN
6461
+  (0.2ms) ROLLBACK
6462
+  (0.1ms) BEGIN
6463
+  (0.2ms) SAVEPOINT active_record_1
6464
+ SQL (7.1ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6465
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6466
+  (0.2ms) ROLLBACK
6467
+  (0.1ms) BEGIN
6468
+  (0.1ms) SAVEPOINT active_record_1
6469
+ SQL (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6470
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6471
+ Foo Load (1.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 62]]
6472
+  (0.3ms) ROLLBACK
6473
+  (0.1ms) BEGIN
6474
+  (0.2ms) ROLLBACK
6475
+  (0.1ms) BEGIN
6476
+  (0.2ms) ROLLBACK
6477
+  (0.1ms) BEGIN
6478
+  (0.2ms) SAVEPOINT active_record_1
6479
+ SQL (2.2ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6481
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 364]]
6482
+  (0.2ms) ROLLBACK
6483
+  (0.1ms) BEGIN
6484
+  (0.1ms) SAVEPOINT active_record_1
6485
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6486
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6487
+  (0.1ms) ROLLBACK
6488
+  (0.1ms) BEGIN
6489
+  (0.1ms) SAVEPOINT active_record_1
6490
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6491
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6492
+  (0.1ms) ROLLBACK
6493
+  (0.1ms) BEGIN
6494
+  (0.1ms) SAVEPOINT active_record_1
6495
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6496
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6497
+  (0.1ms) SAVEPOINT active_record_1
6498
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6500
+  (0.1ms) ROLLBACK
6501
+  (0.1ms) BEGIN
6502
+  (0.1ms) SAVEPOINT active_record_1
6503
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6504
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6505
+  (0.1ms) ROLLBACK
6506
+  (0.1ms) BEGIN
6507
+  (0.1ms) SAVEPOINT active_record_1
6508
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6510
+  (0.1ms) ROLLBACK
6511
+  (0.1ms) BEGIN
6512
+  (0.1ms) SAVEPOINT active_record_1
6513
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6514
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6515
+  (0.1ms) SAVEPOINT active_record_1
6516
+  (0.5ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:09:47.613066' WHERE "somethings"."id" = 371
6517
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6518
+  (0.2ms) ROLLBACK
6519
+  (0.1ms) BEGIN
6520
+  (0.1ms) SAVEPOINT active_record_1
6521
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6523
+  (0.1ms) ROLLBACK
6524
+  (0.1ms) BEGIN
6525
+  (0.1ms) SAVEPOINT active_record_1
6526
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6527
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6528
+  (0.1ms) ROLLBACK
6529
+  (0.1ms) BEGIN
6530
+  (0.2ms) SAVEPOINT active_record_1
6531
+ SQL (1.1ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:09:47 UTC +00:00]]
6532
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6533
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 31]]
6534
+  (0.1ms) ROLLBACK
6535
+ Connecting to database specified by database.yml
6536
+  (0.1ms) BEGIN
6537
+  (0.2ms) ROLLBACK
6538
+  (0.1ms) BEGIN
6539
+  (0.2ms) SAVEPOINT active_record_1
6540
+ SQL (4.0ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6541
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6542
+  (0.1ms) ROLLBACK
6543
+  (0.1ms) BEGIN
6544
+  (0.1ms) SAVEPOINT active_record_1
6545
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6546
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6547
+ Foo Load (0.8ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 64]]
6548
+  (0.2ms) ROLLBACK
6549
+  (0.1ms) BEGIN
6550
+  (0.2ms) ROLLBACK
6551
+  (0.1ms) BEGIN
6552
+  (0.1ms) ROLLBACK
6553
+  (0.1ms) BEGIN
6554
+  (0.1ms) SAVEPOINT active_record_1
6555
+ SQL (0.8ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6556
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6557
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 374]]
6558
+  (0.2ms) ROLLBACK
6559
+  (0.1ms) BEGIN
6560
+  (0.1ms) SAVEPOINT active_record_1
6561
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6562
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6563
+  (0.2ms) ROLLBACK
6564
+  (0.1ms) BEGIN
6565
+  (0.1ms) SAVEPOINT active_record_1
6566
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6568
+  (0.1ms) ROLLBACK
6569
+  (0.1ms) BEGIN
6570
+  (0.1ms) SAVEPOINT active_record_1
6571
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6573
+  (0.1ms) SAVEPOINT active_record_1
6574
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6575
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6576
+  (0.2ms) ROLLBACK
6577
+  (0.2ms) BEGIN
6578
+  (0.3ms) SAVEPOINT active_record_1
6579
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6581
+  (0.2ms) ROLLBACK
6582
+  (0.1ms) BEGIN
6583
+  (0.2ms) SAVEPOINT active_record_1
6584
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6586
+  (0.2ms) ROLLBACK
6587
+  (0.1ms) BEGIN
6588
+  (0.2ms) SAVEPOINT active_record_1
6589
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6590
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6591
+  (0.1ms) SAVEPOINT active_record_1
6592
+  (0.6ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:09:53.212809' WHERE "somethings"."id" = 381
6593
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6594
+  (0.2ms) ROLLBACK
6595
+  (0.1ms) BEGIN
6596
+  (0.2ms) SAVEPOINT active_record_1
6597
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6598
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6599
+  (0.2ms) ROLLBACK
6600
+  (0.1ms) BEGIN
6601
+  (0.1ms) SAVEPOINT active_record_1
6602
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6603
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6604
+  (0.2ms) ROLLBACK
6605
+  (0.2ms) BEGIN
6606
+  (0.3ms) SAVEPOINT active_record_1
6607
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:09:53 UTC +00:00]]
6608
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6609
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 32]]
6610
+  (0.2ms) ROLLBACK
6611
+ Connecting to database specified by database.yml
6612
+  (0.1ms) BEGIN
6613
+  (0.2ms) ROLLBACK
6614
+  (0.1ms) BEGIN
6615
+  (0.3ms) SAVEPOINT active_record_1
6616
+ SQL (6.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6617
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6618
+  (0.2ms) ROLLBACK
6619
+  (0.1ms) BEGIN
6620
+  (0.1ms) SAVEPOINT active_record_1
6621
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6622
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6623
+ Foo Load (1.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 66]]
6624
+  (0.2ms) ROLLBACK
6625
+  (0.1ms) BEGIN
6626
+  (0.2ms) ROLLBACK
6627
+  (0.1ms) BEGIN
6628
+  (0.1ms) ROLLBACK
6629
+  (0.1ms) BEGIN
6630
+  (0.1ms) SAVEPOINT active_record_1
6631
+ SQL (2.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6632
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6633
+ Something Load (0.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 384]]
6634
+  (0.3ms) ROLLBACK
6635
+  (0.1ms) BEGIN
6636
+  (0.1ms) SAVEPOINT active_record_1
6637
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6638
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6639
+  (0.1ms) ROLLBACK
6640
+  (0.1ms) BEGIN
6641
+  (0.1ms) SAVEPOINT active_record_1
6642
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6643
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6644
+  (0.1ms) ROLLBACK
6645
+  (0.1ms) BEGIN
6646
+  (0.1ms) SAVEPOINT active_record_1
6647
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6648
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6649
+  (0.2ms) ROLLBACK
6650
+  (0.1ms) BEGIN
6651
+  (0.1ms) SAVEPOINT active_record_1
6652
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6654
+  (0.1ms) ROLLBACK
6655
+  (0.1ms) BEGIN
6656
+  (0.2ms) SAVEPOINT active_record_1
6657
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6658
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6659
+  (0.1ms) SAVEPOINT active_record_1
6660
+ SQL (0.3ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6661
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6662
+  (0.1ms) ROLLBACK
6663
+  (0.1ms) BEGIN
6664
+  (0.1ms) SAVEPOINT active_record_1
6665
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6666
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6667
+  (0.1ms) ROLLBACK
6668
+  (0.1ms) BEGIN
6669
+  (0.2ms) SAVEPOINT active_record_1
6670
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6671
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6672
+  (0.1ms) ROLLBACK
6673
+  (0.1ms) BEGIN
6674
+  (0.1ms) SAVEPOINT active_record_1
6675
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6677
+  (0.1ms) SAVEPOINT active_record_1
6678
+  (0.5ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:16:02.991621' WHERE "somethings"."id" = 393
6679
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6680
+  (0.2ms) ROLLBACK
6681
+  (0.1ms) BEGIN
6682
+  (0.1ms) SAVEPOINT active_record_1
6683
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:02 UTC +00:00]]
6684
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6685
+  (0.2ms) ROLLBACK
6686
+  (0.1ms) BEGIN
6687
+  (0.1ms) SAVEPOINT active_record_1
6688
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:03 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:16:03 UTC +00:00]]
6689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6690
+  (0.1ms) ROLLBACK
6691
+  (0.1ms) BEGIN
6692
+  (0.2ms) SAVEPOINT active_record_1
6693
+ SQL (1.1ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:16:03 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:16:03 UTC +00:00]]
6694
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6695
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 33]]
6696
+  (0.2ms) ROLLBACK
6697
+ Connecting to database specified by database.yml
6698
+  (0.1ms) BEGIN
6699
+  (0.2ms) ROLLBACK
6700
+  (0.1ms) BEGIN
6701
+  (0.2ms) SAVEPOINT active_record_1
6702
+ SQL (5.0ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6703
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6704
+  (0.1ms) ROLLBACK
6705
+  (0.1ms) BEGIN
6706
+  (0.1ms) SAVEPOINT active_record_1
6707
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6708
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6709
+ Foo Load (0.7ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 68]]
6710
+  (0.2ms) ROLLBACK
6711
+  (0.1ms) BEGIN
6712
+  (0.2ms) ROLLBACK
6713
+  (0.1ms) BEGIN
6714
+  (0.1ms) ROLLBACK
6715
+  (0.1ms) BEGIN
6716
+  (0.1ms) SAVEPOINT active_record_1
6717
+ SQL (0.9ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6718
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6719
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 396]]
6720
+  (0.1ms) ROLLBACK
6721
+  (0.1ms) BEGIN
6722
+  (0.1ms) SAVEPOINT active_record_1
6723
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6724
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6725
+  (0.1ms) ROLLBACK
6726
+  (0.1ms) BEGIN
6727
+  (0.2ms) SAVEPOINT active_record_1
6728
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6729
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6730
+  (0.1ms) ROLLBACK
6731
+  (0.1ms) BEGIN
6732
+  (0.2ms) SAVEPOINT active_record_1
6733
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6734
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
6735
+  (0.2ms) ROLLBACK
6736
+  (0.1ms) BEGIN
6737
+  (0.1ms) SAVEPOINT active_record_1
6738
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6739
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6740
+  (0.1ms) ROLLBACK
6741
+  (0.1ms) BEGIN
6742
+  (0.1ms) SAVEPOINT active_record_1
6743
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6745
+  (0.1ms) ROLLBACK
6746
+  (0.1ms) BEGIN
6747
+  (0.1ms) SAVEPOINT active_record_1
6748
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6749
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6750
+  (0.1ms) ROLLBACK
6751
+  (0.1ms) BEGIN
6752
+  (0.3ms) SAVEPOINT active_record_1
6753
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6754
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6755
+  (0.1ms) SAVEPOINT active_record_1
6756
+  (0.5ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:21:07.384695' WHERE "somethings"."id" = 403
6757
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6758
+  (0.1ms) ROLLBACK
6759
+  (0.1ms) BEGIN
6760
+  (0.1ms) SAVEPOINT active_record_1
6761
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6762
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6763
+  (0.1ms) ROLLBACK
6764
+  (0.1ms) BEGIN
6765
+  (0.1ms) SAVEPOINT active_record_1
6766
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6768
+  (0.1ms) ROLLBACK
6769
+  (0.1ms) BEGIN
6770
+  (0.3ms) SAVEPOINT active_record_1
6771
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:21:07 UTC +00:00]]
6772
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6773
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 34]]
6774
+  (0.2ms) ROLLBACK
6775
+ Connecting to database specified by database.yml
6776
+  (0.1ms) BEGIN
6777
+  (0.1ms) ROLLBACK
6778
+  (0.1ms) BEGIN
6779
+  (0.3ms) SAVEPOINT active_record_1
6780
+ SQL (3.9ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6781
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6782
+  (0.2ms) ROLLBACK
6783
+  (0.1ms) BEGIN
6784
+  (0.1ms) SAVEPOINT active_record_1
6785
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6786
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6787
+ Foo Load (0.8ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 70]]
6788
+  (0.1ms) ROLLBACK
6789
+  (0.1ms) BEGIN
6790
+  (0.3ms) ROLLBACK
6791
+  (0.1ms) BEGIN
6792
+  (0.1ms) ROLLBACK
6793
+  (0.1ms) BEGIN
6794
+  (0.1ms) SAVEPOINT active_record_1
6795
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6796
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6797
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 406]]
6798
+  (0.1ms) ROLLBACK
6799
+  (0.1ms) BEGIN
6800
+  (0.1ms) SAVEPOINT active_record_1
6801
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6803
+  (0.1ms) ROLLBACK
6804
+  (0.1ms) BEGIN
6805
+  (0.1ms) SAVEPOINT active_record_1
6806
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6807
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6808
+  (0.1ms) ROLLBACK
6809
+  (0.1ms) BEGIN
6810
+  (0.1ms) SAVEPOINT active_record_1
6811
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6812
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
6813
+  (0.1ms) ROLLBACK
6814
+  (0.1ms) BEGIN
6815
+  (0.1ms) SAVEPOINT active_record_1
6816
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6817
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6818
+  (0.1ms) ROLLBACK
6819
+  (0.1ms) BEGIN
6820
+  (0.1ms) SAVEPOINT active_record_1
6821
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6822
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6823
+  (0.1ms) ROLLBACK
6824
+  (0.1ms) BEGIN
6825
+  (0.1ms) SAVEPOINT active_record_1
6826
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6827
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6828
+  (0.1ms) ROLLBACK
6829
+  (0.1ms) BEGIN
6830
+  (0.2ms) SAVEPOINT active_record_1
6831
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6832
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6833
+  (0.1ms) SAVEPOINT active_record_1
6834
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:21:27.190269' WHERE "somethings"."id" = 413
6835
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6836
+  (0.1ms) ROLLBACK
6837
+  (0.1ms) BEGIN
6838
+  (0.1ms) SAVEPOINT active_record_1
6839
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6840
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6841
+  (0.1ms) ROLLBACK
6842
+  (0.1ms) BEGIN
6843
+  (0.1ms) SAVEPOINT active_record_1
6844
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6845
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6846
+  (0.1ms) ROLLBACK
6847
+  (0.1ms) BEGIN
6848
+  (0.2ms) SAVEPOINT active_record_1
6849
+ SQL (0.8ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:21:27 UTC +00:00]]
6850
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6851
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 35]]
6852
+  (0.2ms) ROLLBACK
6853
+ Connecting to database specified by database.yml
6854
+  (0.1ms) BEGIN
6855
+  (0.2ms) ROLLBACK
6856
+  (0.1ms) BEGIN
6857
+  (0.3ms) SAVEPOINT active_record_1
6858
+ SQL (3.8ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6859
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6860
+  (0.1ms) ROLLBACK
6861
+  (0.1ms) BEGIN
6862
+  (0.1ms) SAVEPOINT active_record_1
6863
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6864
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6865
+ Foo Load (0.7ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 72]]
6866
+  (0.1ms) ROLLBACK
6867
+  (0.1ms) BEGIN
6868
+  (0.4ms) ROLLBACK
6869
+  (0.1ms) BEGIN
6870
+  (0.1ms) ROLLBACK
6871
+  (0.1ms) BEGIN
6872
+  (0.1ms) SAVEPOINT active_record_1
6873
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6874
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6875
+ Something Load (0.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 416]]
6876
+  (0.2ms) ROLLBACK
6877
+  (0.1ms) BEGIN
6878
+  (0.1ms) SAVEPOINT active_record_1
6879
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6880
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6881
+  (0.1ms) ROLLBACK
6882
+  (0.1ms) BEGIN
6883
+  (0.1ms) SAVEPOINT active_record_1
6884
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6885
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6886
+  (0.1ms) ROLLBACK
6887
+  (0.1ms) BEGIN
6888
+  (0.1ms) SAVEPOINT active_record_1
6889
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6890
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6891
+  (0.1ms) SAVEPOINT active_record_1
6892
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6893
+  (0.1ms) ROLLBACK
6894
+  (0.1ms) BEGIN
6895
+  (0.1ms) SAVEPOINT active_record_1
6896
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6897
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6898
+  (0.1ms) ROLLBACK
6899
+  (0.1ms) BEGIN
6900
+  (0.1ms) SAVEPOINT active_record_1
6901
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6902
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6903
+  (0.1ms) ROLLBACK
6904
+  (0.1ms) BEGIN
6905
+  (0.1ms) SAVEPOINT active_record_1
6906
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6907
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6908
+  (0.1ms) ROLLBACK
6909
+  (0.1ms) BEGIN
6910
+  (0.2ms) SAVEPOINT active_record_1
6911
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6913
+  (0.1ms) SAVEPOINT active_record_1
6914
+  (0.5ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:23:22.592417' WHERE "somethings"."id" = 423
6915
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6916
+  (0.1ms) ROLLBACK
6917
+  (0.1ms) BEGIN
6918
+  (0.1ms) SAVEPOINT active_record_1
6919
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6920
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6921
+  (0.1ms) ROLLBACK
6922
+  (0.1ms) BEGIN
6923
+  (0.1ms) SAVEPOINT active_record_1
6924
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6925
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6926
+  (0.1ms) ROLLBACK
6927
+  (0.1ms) BEGIN
6928
+  (0.3ms) SAVEPOINT active_record_1
6929
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:23:22 UTC +00:00]]
6930
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6931
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 36]]
6932
+  (0.2ms) ROLLBACK
6933
+ Connecting to database specified by database.yml
6934
+  (0.1ms) BEGIN
6935
+  (0.1ms) ROLLBACK
6936
+  (0.1ms) BEGIN
6937
+  (0.3ms) SAVEPOINT active_record_1
6938
+ SQL (29.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:40 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:23:40 UTC +00:00]]
6939
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6940
+  (0.2ms) ROLLBACK
6941
+  (0.1ms) BEGIN
6942
+  (0.1ms) SAVEPOINT active_record_1
6943
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6944
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6945
+ Foo Load (0.9ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 74]]
6946
+  (0.2ms) ROLLBACK
6947
+  (0.1ms) BEGIN
6948
+  (0.3ms) ROLLBACK
6949
+  (0.1ms) BEGIN
6950
+  (0.2ms) ROLLBACK
6951
+  (0.1ms) BEGIN
6952
+  (0.1ms) SAVEPOINT active_record_1
6953
+ SQL (1.1ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6954
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6955
+ Something Load (0.7ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 426]]
6956
+  (0.2ms) ROLLBACK
6957
+  (0.1ms) BEGIN
6958
+  (0.2ms) SAVEPOINT active_record_1
6959
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6960
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6961
+  (0.2ms) ROLLBACK
6962
+  (0.1ms) BEGIN
6963
+  (0.3ms) SAVEPOINT active_record_1
6964
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6965
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6966
+  (0.3ms) ROLLBACK
6967
+  (0.1ms) BEGIN
6968
+  (0.3ms) SAVEPOINT active_record_1
6969
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6970
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6971
+  (0.3ms) SAVEPOINT active_record_1
6972
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
6973
+  (0.3ms) ROLLBACK
6974
+  (0.2ms) BEGIN
6975
+  (0.2ms) SAVEPOINT active_record_1
6976
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6977
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6978
+  (0.2ms) ROLLBACK
6979
+  (0.1ms) BEGIN
6980
+  (0.3ms) SAVEPOINT active_record_1
6981
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6982
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6983
+  (0.2ms) ROLLBACK
6984
+  (0.1ms) BEGIN
6985
+  (0.3ms) SAVEPOINT active_record_1
6986
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6987
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6988
+  (0.2ms) ROLLBACK
6989
+  (0.1ms) BEGIN
6990
+  (0.3ms) SAVEPOINT active_record_1
6991
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
6992
+  (0.3ms) RELEASE SAVEPOINT active_record_1
6993
+  (0.2ms) SAVEPOINT active_record_1
6994
+  (0.6ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:23:41.181972' WHERE "somethings"."id" = 433
6995
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6996
+  (0.2ms) ROLLBACK
6997
+  (0.1ms) BEGIN
6998
+  (0.3ms) SAVEPOINT active_record_1
6999
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
7000
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7001
+  (0.2ms) ROLLBACK
7002
+  (0.1ms) BEGIN
7003
+  (0.3ms) SAVEPOINT active_record_1
7004
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
7005
+  (0.3ms) RELEASE SAVEPOINT active_record_1
7006
+  (0.2ms) ROLLBACK
7007
+  (0.1ms) BEGIN
7008
+  (0.2ms) SAVEPOINT active_record_1
7009
+ SQL (1.0ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:23:41 UTC +00:00]]
7010
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7011
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 37]]
7012
+  (0.2ms) ROLLBACK
7013
+ Connecting to database specified by database.yml
7014
+  (0.1ms) BEGIN
7015
+  (0.1ms) ROLLBACK
7016
+  (0.1ms) BEGIN
7017
+  (0.2ms) SAVEPOINT active_record_1
7018
+ SQL (7.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7020
+  (0.2ms) ROLLBACK
7021
+  (0.1ms) BEGIN
7022
+  (0.1ms) SAVEPOINT active_record_1
7023
+ SQL (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7024
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7025
+ Foo Load (0.8ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 76]]
7026
+  (0.1ms) ROLLBACK
7027
+  (0.1ms) BEGIN
7028
+  (0.3ms) ROLLBACK
7029
+  (0.1ms) BEGIN
7030
+  (0.2ms) ROLLBACK
7031
+  (0.1ms) BEGIN
7032
+  (0.1ms) SAVEPOINT active_record_1
7033
+ SQL (3.3ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7034
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7035
+ Something Load (0.6ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 436]]
7036
+  (0.2ms) ROLLBACK
7037
+  (0.1ms) BEGIN
7038
+  (0.1ms) SAVEPOINT active_record_1
7039
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7041
+  (0.1ms) ROLLBACK
7042
+  (0.1ms) BEGIN
7043
+  (0.1ms) SAVEPOINT active_record_1
7044
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7046
+  (0.1ms) ROLLBACK
7047
+  (0.1ms) BEGIN
7048
+  (0.1ms) SAVEPOINT active_record_1
7049
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7050
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7051
+  (0.2ms) SAVEPOINT active_record_1
7052
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7053
+  (0.2ms) ROLLBACK
7054
+  (0.1ms) BEGIN
7055
+  (0.1ms) SAVEPOINT active_record_1
7056
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7058
+  (0.1ms) ROLLBACK
7059
+  (0.1ms) BEGIN
7060
+  (0.1ms) SAVEPOINT active_record_1
7061
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7062
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7063
+  (0.2ms) ROLLBACK
7064
+  (0.2ms) BEGIN
7065
+  (0.2ms) SAVEPOINT active_record_1
7066
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7068
+  (0.1ms) ROLLBACK
7069
+  (0.1ms) BEGIN
7070
+  (0.1ms) SAVEPOINT active_record_1
7071
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7072
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7073
+  (0.1ms) ROLLBACK
7074
+  (0.2ms) BEGIN
7075
+  (0.2ms) SAVEPOINT active_record_1
7076
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7077
+  (0.3ms) RELEASE SAVEPOINT active_record_1
7078
+  (0.2ms) SAVEPOINT active_record_1
7079
+  (0.5ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:30:49.970949' WHERE "somethings"."id" = 444
7080
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7081
+  (0.1ms) ROLLBACK
7082
+  (0.1ms) BEGIN
7083
+  (0.2ms) SAVEPOINT active_record_1
7084
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7085
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7086
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 445]]
7087
+  (0.1ms) ROLLBACK
7088
+  (0.1ms) BEGIN
7089
+  (0.2ms) SAVEPOINT active_record_1
7090
+ SQL (1.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:30:49 UTC +00:00]]
7091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7092
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 38]]
7093
+  (0.1ms) ROLLBACK
7094
+ Connecting to database specified by database.yml
7095
+  (0.1ms) BEGIN
7096
+  (0.2ms) ROLLBACK
7097
+  (0.2ms) BEGIN
7098
+  (0.2ms) SAVEPOINT active_record_1
7099
+ SQL (4.0ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7100
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7101
+  (0.3ms) ROLLBACK
7102
+  (0.1ms) BEGIN
7103
+  (0.1ms) SAVEPOINT active_record_1
7104
+ SQL (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7106
+ Foo Load (0.9ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 78]]
7107
+  (0.2ms) ROLLBACK
7108
+  (0.1ms) BEGIN
7109
+  (0.3ms) ROLLBACK
7110
+  (0.1ms) BEGIN
7111
+  (0.1ms) ROLLBACK
7112
+  (0.1ms) BEGIN
7113
+  (0.1ms) SAVEPOINT active_record_1
7114
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7115
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7116
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 446]]
7117
+  (0.2ms) ROLLBACK
7118
+  (0.1ms) BEGIN
7119
+  (0.1ms) SAVEPOINT active_record_1
7120
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7122
+  (0.1ms) ROLLBACK
7123
+  (0.1ms) BEGIN
7124
+  (0.1ms) SAVEPOINT active_record_1
7125
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7126
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7127
+  (0.1ms) ROLLBACK
7128
+  (0.1ms) BEGIN
7129
+  (0.1ms) SAVEPOINT active_record_1
7130
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7131
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7132
+  (0.2ms) SAVEPOINT active_record_1
7133
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7134
+  (0.2ms) ROLLBACK
7135
+  (0.1ms) BEGIN
7136
+  (0.1ms) SAVEPOINT active_record_1
7137
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7138
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7139
+  (0.1ms) ROLLBACK
7140
+  (0.1ms) BEGIN
7141
+  (0.1ms) SAVEPOINT active_record_1
7142
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7143
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7144
+  (0.1ms) ROLLBACK
7145
+  (0.1ms) BEGIN
7146
+  (0.1ms) SAVEPOINT active_record_1
7147
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7148
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7149
+  (0.1ms) ROLLBACK
7150
+  (0.1ms) BEGIN
7151
+  (0.1ms) SAVEPOINT active_record_1
7152
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7154
+  (0.1ms) ROLLBACK
7155
+  (0.1ms) BEGIN
7156
+  (0.2ms) SAVEPOINT active_record_1
7157
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7159
+  (0.1ms) SAVEPOINT active_record_1
7160
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:33:38.986588' WHERE "somethings"."id" = 454
7161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7162
+  (0.1ms) ROLLBACK
7163
+  (0.1ms) BEGIN
7164
+  (0.1ms) SAVEPOINT active_record_1
7165
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:38 UTC +00:00]]
7166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7167
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 455]]
7168
+  (0.1ms) ROLLBACK
7169
+  (0.1ms) BEGIN
7170
+  (0.2ms) SAVEPOINT active_record_1
7171
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:39 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:33:39 UTC +00:00]]
7172
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7173
+ Noarraything Load (0.4ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 39]]
7174
+  (0.2ms) ROLLBACK
7175
+ Connecting to database specified by database.yml
7176
+  (0.1ms) BEGIN
7177
+  (0.3ms) ROLLBACK
7178
+  (0.1ms) BEGIN
7179
+  (0.2ms) SAVEPOINT active_record_1
7180
+ SQL (3.6ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:44 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:33:44 UTC +00:00]]
7181
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7182
+  (0.1ms) ROLLBACK
7183
+  (0.1ms) BEGIN
7184
+  (0.1ms) SAVEPOINT active_record_1
7185
+ SQL (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:44 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:33:44 UTC +00:00]]
7186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7187
+ Foo Load (0.6ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 80]]
7188
+  (0.2ms) ROLLBACK
7189
+  (0.1ms) BEGIN
7190
+  (0.3ms) ROLLBACK
7191
+  (0.1ms) BEGIN
7192
+  (0.2ms) ROLLBACK
7193
+  (0.1ms) BEGIN
7194
+  (0.2ms) SAVEPOINT active_record_1
7195
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7196
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7197
+ Something Load (0.6ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 456]]
7198
+  (0.2ms) ROLLBACK
7199
+  (0.1ms) BEGIN
7200
+  (0.1ms) SAVEPOINT active_record_1
7201
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7202
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7203
+  (0.1ms) ROLLBACK
7204
+  (0.1ms) BEGIN
7205
+  (0.1ms) SAVEPOINT active_record_1
7206
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7207
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7208
+  (0.1ms) ROLLBACK
7209
+  (0.1ms) BEGIN
7210
+  (0.1ms) SAVEPOINT active_record_1
7211
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7212
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7213
+  (0.1ms) SAVEPOINT active_record_1
7214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7215
+  (0.1ms) ROLLBACK
7216
+  (0.1ms) BEGIN
7217
+  (0.1ms) SAVEPOINT active_record_1
7218
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7219
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7220
+  (0.1ms) ROLLBACK
7221
+  (0.1ms) BEGIN
7222
+  (0.1ms) SAVEPOINT active_record_1
7223
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7224
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7225
+  (0.2ms) ROLLBACK
7226
+  (0.1ms) BEGIN
7227
+  (0.2ms) SAVEPOINT active_record_1
7228
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7230
+  (0.1ms) ROLLBACK
7231
+  (0.1ms) BEGIN
7232
+  (0.1ms) SAVEPOINT active_record_1
7233
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7235
+  (0.1ms) ROLLBACK
7236
+  (0.1ms) BEGIN
7237
+  (0.1ms) SAVEPOINT active_record_1
7238
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7239
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7240
+  (0.1ms) SAVEPOINT active_record_1
7241
+  (0.5ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:33:45.073988' WHERE "somethings"."id" = 464
7242
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7243
+  (0.2ms) ROLLBACK
7244
+  (0.1ms) BEGIN
7245
+  (0.1ms) SAVEPOINT active_record_1
7246
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7248
+ Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 465]]
7249
+  (0.2ms) ROLLBACK
7250
+  (0.1ms) BEGIN
7251
+  (0.2ms) SAVEPOINT active_record_1
7252
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:33:45 UTC +00:00]]
7253
+  (0.3ms) RELEASE SAVEPOINT active_record_1
7254
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 40]]
7255
+  (0.1ms) ROLLBACK
7256
+ Connecting to database specified by database.yml
7257
+  (0.1ms) BEGIN
7258
+  (0.2ms) ROLLBACK
7259
+  (0.1ms) BEGIN
7260
+  (0.2ms) SAVEPOINT active_record_1
7261
+ SQL (4.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7263
+  (0.1ms) ROLLBACK
7264
+  (0.1ms) BEGIN
7265
+  (0.1ms) SAVEPOINT active_record_1
7266
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7267
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7268
+ Foo Load (0.7ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 82]]
7269
+  (0.2ms) ROLLBACK
7270
+  (0.1ms) BEGIN
7271
+  (0.3ms) ROLLBACK
7272
+  (0.1ms) BEGIN
7273
+  (0.1ms) ROLLBACK
7274
+  (0.1ms) BEGIN
7275
+  (0.1ms) SAVEPOINT active_record_1
7276
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7277
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7278
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 466]]
7279
+  (0.3ms) ROLLBACK
7280
+  (0.1ms) BEGIN
7281
+  (0.1ms) SAVEPOINT active_record_1
7282
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7283
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7284
+  (0.1ms) ROLLBACK
7285
+  (0.1ms) BEGIN
7286
+  (0.1ms) SAVEPOINT active_record_1
7287
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7289
+  (0.1ms) ROLLBACK
7290
+  (0.1ms) BEGIN
7291
+  (0.1ms) SAVEPOINT active_record_1
7292
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7294
+  (0.1ms) SAVEPOINT active_record_1
7295
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7296
+  (0.1ms) ROLLBACK
7297
+  (0.1ms) BEGIN
7298
+  (0.1ms) SAVEPOINT active_record_1
7299
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7300
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7301
+  (0.1ms) ROLLBACK
7302
+  (0.1ms) BEGIN
7303
+  (0.1ms) SAVEPOINT active_record_1
7304
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7305
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7306
+  (0.1ms) ROLLBACK
7307
+  (0.1ms) BEGIN
7308
+  (0.1ms) SAVEPOINT active_record_1
7309
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7311
+  (0.1ms) ROLLBACK
7312
+  (0.1ms) BEGIN
7313
+  (0.1ms) SAVEPOINT active_record_1
7314
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7315
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7316
+  (0.1ms) ROLLBACK
7317
+  (0.1ms) BEGIN
7318
+  (0.2ms) SAVEPOINT active_record_1
7319
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7320
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7321
+  (0.1ms) SAVEPOINT active_record_1
7322
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 19:37:29.572457' WHERE "somethings"."id" = 474
7323
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7324
+  (0.2ms) ROLLBACK
7325
+  (0.1ms) BEGIN
7326
+  (0.2ms) SAVEPOINT active_record_1
7327
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7328
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7329
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 475]]
7330
+  (0.1ms) ROLLBACK
7331
+  (0.1ms) BEGIN
7332
+  (0.3ms) SAVEPOINT active_record_1
7333
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 19:37:29 UTC +00:00]]
7334
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7335
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 41]]
7336
+  (0.3ms) ROLLBACK
7337
+ Connecting to database specified by database.yml
7338
+  (0.1ms) BEGIN
7339
+  (0.2ms) ROLLBACK
7340
+  (0.1ms) BEGIN
7341
+  (0.2ms) SAVEPOINT active_record_1
7342
+ SQL (8.1ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7344
+  (0.1ms) ROLLBACK
7345
+  (0.1ms) BEGIN
7346
+  (0.1ms) SAVEPOINT active_record_1
7347
+ SQL (0.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7348
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7349
+ Foo Load (1.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 84]]
7350
+  (0.1ms) ROLLBACK
7351
+  (0.1ms) BEGIN
7352
+  (0.3ms) ROLLBACK
7353
+  (0.1ms) BEGIN
7354
+  (0.1ms) ROLLBACK
7355
+  (0.1ms) BEGIN
7356
+  (0.1ms) SAVEPOINT active_record_1
7357
+ SQL (2.9ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7358
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7359
+ Something Load (0.6ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 476]]
7360
+  (0.3ms) ROLLBACK
7361
+  (0.1ms) BEGIN
7362
+  (0.1ms) SAVEPOINT active_record_1
7363
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7364
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7365
+  (0.1ms) ROLLBACK
7366
+  (0.1ms) BEGIN
7367
+  (0.2ms) SAVEPOINT active_record_1
7368
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7370
+  (0.1ms) ROLLBACK
7371
+  (0.1ms) BEGIN
7372
+  (0.1ms) SAVEPOINT active_record_1
7373
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7374
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7375
+  (0.1ms) SAVEPOINT active_record_1
7376
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7377
+  (0.1ms) ROLLBACK
7378
+  (0.1ms) BEGIN
7379
+  (0.1ms) SAVEPOINT active_record_1
7380
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7382
+  (0.1ms) ROLLBACK
7383
+  (0.1ms) BEGIN
7384
+  (0.1ms) SAVEPOINT active_record_1
7385
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7386
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7387
+  (0.1ms) ROLLBACK
7388
+  (0.1ms) BEGIN
7389
+  (0.1ms) SAVEPOINT active_record_1
7390
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7391
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7392
+  (0.1ms) ROLLBACK
7393
+  (0.1ms) BEGIN
7394
+  (0.2ms) SAVEPOINT active_record_1
7395
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7396
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7397
+  (0.1ms) ROLLBACK
7398
+  (0.1ms) BEGIN
7399
+  (0.1ms) SAVEPOINT active_record_1
7400
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7401
+  (0.3ms) RELEASE SAVEPOINT active_record_1
7402
+  (0.1ms) SAVEPOINT active_record_1
7403
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 20:06:10.358337' WHERE "somethings"."id" = 484
7404
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7405
+  (0.1ms) ROLLBACK
7406
+  (0.1ms) BEGIN
7407
+  (0.1ms) SAVEPOINT active_record_1
7408
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7410
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 485]]
7411
+  (0.1ms) ROLLBACK
7412
+  (0.1ms) BEGIN
7413
+  (0.3ms) SAVEPOINT active_record_1
7414
+ SQL (1.7ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 20:06:10 UTC +00:00]]
7415
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7416
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 42]]
7417
+  (0.2ms) ROLLBACK
7418
+ Connecting to database specified by database.yml
7419
+  (0.1ms) BEGIN
7420
+  (0.2ms) ROLLBACK
7421
+  (0.1ms) BEGIN
7422
+  (0.2ms) SAVEPOINT active_record_1
7423
+ SQL (33.3ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00]]
7424
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7425
+  (0.2ms) ROLLBACK
7426
+  (0.1ms) BEGIN
7427
+  (0.1ms) SAVEPOINT active_record_1
7428
+ SQL (0.5ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00]]
7429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7430
+ Foo Load (0.8ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 86]]
7431
+  (0.2ms) ROLLBACK
7432
+  (0.1ms) BEGIN
7433
+  (0.3ms) ROLLBACK
7434
+  (0.1ms) BEGIN
7435
+  (0.2ms) ROLLBACK
7436
+  (0.1ms) BEGIN
7437
+  (0.1ms) SAVEPOINT active_record_1
7438
+ SQL (0.9ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00]]
7439
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7440
+ Something Load (0.6ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 486]]
7441
+  (0.2ms) ROLLBACK
7442
+  (0.1ms) BEGIN
7443
+  (0.2ms) SAVEPOINT active_record_1
7444
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00]]
7445
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7446
+  (0.1ms) ROLLBACK
7447
+  (0.1ms) BEGIN
7448
+  (0.2ms) SAVEPOINT active_record_1
7449
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00]]
7450
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7451
+  (0.1ms) ROLLBACK
7452
+  (0.1ms) BEGIN
7453
+  (0.1ms) SAVEPOINT active_record_1
7454
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00]]
7455
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7456
+  (0.1ms) SAVEPOINT active_record_1
7457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7458
+  (0.1ms) ROLLBACK
7459
+  (0.1ms) BEGIN
7460
+  (0.1ms) SAVEPOINT active_record_1
7461
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 20:06:21 UTC +00:00]]
7462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7463
+  (0.1ms) ROLLBACK
7464
+  (0.1ms) BEGIN
7465
+  (0.1ms) SAVEPOINT active_record_1
7466
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00]]
7467
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7468
+  (0.1ms) ROLLBACK
7469
+  (0.1ms) BEGIN
7470
+  (0.2ms) SAVEPOINT active_record_1
7471
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00]]
7472
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7473
+  (0.2ms) ROLLBACK
7474
+  (0.1ms) BEGIN
7475
+  (0.2ms) SAVEPOINT active_record_1
7476
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00]]
7477
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7478
+  (0.1ms) ROLLBACK
7479
+  (0.1ms) BEGIN
7480
+  (0.2ms) SAVEPOINT active_record_1
7481
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00]]
7482
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7483
+  (0.1ms) SAVEPOINT active_record_1
7484
+  (0.5ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 20:06:22.016024' WHERE "somethings"."id" = 494
7485
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7486
+  (0.1ms) ROLLBACK
7487
+  (0.1ms) BEGIN
7488
+  (0.1ms) SAVEPOINT active_record_1
7489
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00]]
7490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7491
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 495]]
7492
+  (0.1ms) ROLLBACK
7493
+  (0.1ms) BEGIN
7494
+  (0.2ms) SAVEPOINT active_record_1
7495
+ SQL (1.0ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 20:06:22 UTC +00:00]]
7496
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7497
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 43]]
7498
+  (0.2ms) ROLLBACK
7499
+ Connecting to database specified by database.yml
7500
+  (0.1ms) BEGIN
7501
+  (0.1ms) ROLLBACK
7502
+  (0.1ms) BEGIN
7503
+  (0.2ms) SAVEPOINT active_record_1
7504
+ SQL (5.2ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:00 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:07:00 UTC +00:00]]
7505
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7506
+  (0.1ms) ROLLBACK
7507
+  (0.1ms) BEGIN
7508
+  (0.1ms) SAVEPOINT active_record_1
7509
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:00 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:07:00 UTC +00:00]]
7510
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7511
+ Foo Load (0.7ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 88]]
7512
+  (0.2ms) ROLLBACK
7513
+  (0.2ms) BEGIN
7514
+  (0.2ms) ROLLBACK
7515
+  (0.2ms) BEGIN
7516
+  (0.4ms) SAVEPOINT active_record_1
7517
+ SQL (3.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:39 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:39 UTC +00:00]]
7518
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7519
+ Something Load (0.8ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 496]]
7520
+  (0.3ms) ROLLBACK
7521
+  (0.1ms) BEGIN
7522
+  (0.2ms) SAVEPOINT active_record_1
7523
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7524
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7525
+ Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 497]]
7526
+  (0.2ms) ROLLBACK
7527
+  (0.1ms) BEGIN
7528
+  (0.1ms) SAVEPOINT active_record_1
7529
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7530
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7531
+  (0.1ms) ROLLBACK
7532
+  (0.1ms) BEGIN
7533
+  (0.2ms) SAVEPOINT active_record_1
7534
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7535
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7536
+  (0.1ms) ROLLBACK
7537
+  (0.1ms) BEGIN
7538
+  (0.2ms) SAVEPOINT active_record_1
7539
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7540
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7541
+  (0.2ms) SAVEPOINT active_record_1
7542
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7543
+  (0.2ms) ROLLBACK
7544
+  (0.1ms) BEGIN
7545
+  (0.1ms) SAVEPOINT active_record_1
7546
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7547
+  (0.3ms) RELEASE SAVEPOINT active_record_1
7548
+  (0.2ms) ROLLBACK
7549
+  (0.2ms) BEGIN
7550
+  (0.3ms) SAVEPOINT active_record_1
7551
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7552
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7553
+  (0.2ms) ROLLBACK
7554
+  (0.3ms) BEGIN
7555
+  (0.2ms) SAVEPOINT active_record_1
7556
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7557
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7558
+  (0.1ms) ROLLBACK
7559
+  (0.1ms) BEGIN
7560
+  (0.2ms) SAVEPOINT active_record_1
7561
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7562
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7563
+  (0.1ms) ROLLBACK
7564
+  (0.1ms) BEGIN
7565
+  (0.2ms) SAVEPOINT active_record_1
7566
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7568
+  (0.1ms) SAVEPOINT active_record_1
7569
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 20:07:52.463052' WHERE "somethings"."id" = 505
7570
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7571
+  (0.2ms) ROLLBACK
7572
+  (0.1ms) BEGIN
7573
+  (0.1ms) SAVEPOINT active_record_1
7574
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7575
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7576
+ Something Load (0.3ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 506]]
7577
+  (0.2ms) ROLLBACK
7578
+  (0.1ms) BEGIN
7579
+  (0.2ms) SAVEPOINT active_record_1
7580
+ SQL (1.5ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 20:07:52 UTC +00:00]]
7581
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7582
+ Noarraything Load (0.7ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 44]]
7583
+  (0.2ms) ROLLBACK
7584
+ Connecting to database specified by database.yml
7585
+  (0.1ms) BEGIN
7586
+  (0.2ms) ROLLBACK
7587
+  (0.1ms) BEGIN
7588
+  (0.3ms) SAVEPOINT active_record_1
7589
+ SQL (35.8ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7590
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7591
+  (0.1ms) ROLLBACK
7592
+  (0.1ms) BEGIN
7593
+  (0.1ms) SAVEPOINT active_record_1
7594
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7595
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7596
+ Foo Load (0.9ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 90]]
7597
+  (0.2ms) ROLLBACK
7598
+  (0.1ms) BEGIN
7599
+  (0.3ms) ROLLBACK
7600
+  (0.1ms) BEGIN
7601
+  (0.2ms) ROLLBACK
7602
+  (0.1ms) BEGIN
7603
+  (0.1ms) SAVEPOINT active_record_1
7604
+ SQL (3.3ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7605
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7606
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 507]]
7607
+  (0.1ms) ROLLBACK
7608
+  (0.1ms) BEGIN
7609
+  (0.1ms) SAVEPOINT active_record_1
7610
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7611
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7612
+  (0.1ms) ROLLBACK
7613
+  (0.1ms) BEGIN
7614
+  (0.2ms) SAVEPOINT active_record_1
7615
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7616
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7617
+  (0.2ms) ROLLBACK
7618
+  (0.1ms) BEGIN
7619
+  (0.2ms) SAVEPOINT active_record_1
7620
+ SQL (0.6ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7621
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7622
+  (0.1ms) SAVEPOINT active_record_1
7623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7624
+  (0.1ms) ROLLBACK
7625
+  (0.1ms) BEGIN
7626
+  (0.1ms) SAVEPOINT active_record_1
7627
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7628
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7629
+  (0.1ms) ROLLBACK
7630
+  (0.1ms) BEGIN
7631
+  (0.1ms) SAVEPOINT active_record_1
7632
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7633
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7634
+  (0.1ms) ROLLBACK
7635
+  (0.1ms) BEGIN
7636
+  (0.1ms) SAVEPOINT active_record_1
7637
+ SQL (0.7ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7638
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7639
+  (0.2ms) ROLLBACK
7640
+  (0.2ms) BEGIN
7641
+  (0.2ms) SAVEPOINT active_record_1
7642
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7643
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7644
+  (0.1ms) ROLLBACK
7645
+  (0.1ms) BEGIN
7646
+  (0.1ms) SAVEPOINT active_record_1
7647
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7649
+  (0.1ms) SAVEPOINT active_record_1
7650
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 20:11:37.657220' WHERE "somethings"."id" = 515
7651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7652
+  (0.1ms) ROLLBACK
7653
+  (0.1ms) BEGIN
7654
+  (0.1ms) SAVEPOINT active_record_1
7655
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7656
+  (0.3ms) RELEASE SAVEPOINT active_record_1
7657
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 516]]
7658
+  (0.1ms) ROLLBACK
7659
+  (0.1ms) BEGIN
7660
+  (0.2ms) SAVEPOINT active_record_1
7661
+ SQL (2.0ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 20:11:37 UTC +00:00]]
7662
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7663
+ Noarraything Load (0.6ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 45]]
7664
+  (0.2ms) ROLLBACK
7665
+ Connecting to database specified by database.yml
7666
+  (0.1ms) BEGIN
7667
+  (0.3ms) ROLLBACK
7668
+  (0.1ms) BEGIN
7669
+  (0.2ms) SAVEPOINT active_record_1
7670
+ SQL (3.6ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7671
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7672
+  (0.2ms) ROLLBACK
7673
+  (0.1ms) BEGIN
7674
+  (0.1ms) SAVEPOINT active_record_1
7675
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7677
+ Foo Load (0.7ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 92]]
7678
+  (0.1ms) ROLLBACK
7679
+  (0.1ms) BEGIN
7680
+  (0.3ms) ROLLBACK
7681
+  (0.1ms) BEGIN
7682
+  (0.1ms) ROLLBACK
7683
+  (0.1ms) BEGIN
7684
+  (0.1ms) SAVEPOINT active_record_1
7685
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7687
+ Something Load (0.5ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 517]]
7688
+  (0.1ms) ROLLBACK
7689
+  (0.1ms) BEGIN
7690
+  (0.1ms) SAVEPOINT active_record_1
7691
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7692
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7693
+  (0.1ms) ROLLBACK
7694
+  (0.1ms) BEGIN
7695
+  (0.1ms) SAVEPOINT active_record_1
7696
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7698
+  (0.1ms) ROLLBACK
7699
+  (0.1ms) BEGIN
7700
+  (0.1ms) SAVEPOINT active_record_1
7701
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7702
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7703
+  (0.1ms) SAVEPOINT active_record_1
7704
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7705
+  (0.1ms) ROLLBACK
7706
+  (0.1ms) BEGIN
7707
+  (0.1ms) SAVEPOINT active_record_1
7708
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7709
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7710
+  (0.1ms) ROLLBACK
7711
+  (0.1ms) BEGIN
7712
+  (0.1ms) SAVEPOINT active_record_1
7713
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7714
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7715
+  (0.1ms) ROLLBACK
7716
+  (0.1ms) BEGIN
7717
+  (0.1ms) SAVEPOINT active_record_1
7718
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7719
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7720
+  (0.1ms) ROLLBACK
7721
+  (0.1ms) BEGIN
7722
+  (0.1ms) SAVEPOINT active_record_1
7723
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7724
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7725
+  (0.1ms) ROLLBACK
7726
+  (0.1ms) BEGIN
7727
+  (0.1ms) SAVEPOINT active_record_1
7728
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7729
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7730
+  (0.1ms) SAVEPOINT active_record_1
7731
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 20:12:00.174868' WHERE "somethings"."id" = 525
7732
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7733
+  (0.1ms) ROLLBACK
7734
+  (0.1ms) BEGIN
7735
+  (0.1ms) SAVEPOINT active_record_1
7736
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7737
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7738
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 526]]
7739
+  (0.3ms) ROLLBACK
7740
+  (0.1ms) BEGIN
7741
+  (0.3ms) SAVEPOINT active_record_1
7742
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 20:12:00 UTC +00:00]]
7743
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7744
+ Noarraything Load (0.4ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 46]]
7745
+  (0.2ms) ROLLBACK
7746
+ Connecting to database specified by database.yml
7747
+  (0.1ms) BEGIN
7748
+  (0.2ms) ROLLBACK
7749
+  (0.1ms) BEGIN
7750
+  (0.4ms) SAVEPOINT active_record_1
7751
+ SQL (4.6ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7753
+  (0.2ms) ROLLBACK
7754
+  (0.1ms) BEGIN
7755
+  (0.1ms) SAVEPOINT active_record_1
7756
+ SQL (0.4ms) INSERT INTO "foos" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7757
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7758
+ Foo Load (0.7ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = $1 LIMIT 1 [["id", 94]]
7759
+  (0.2ms) ROLLBACK
7760
+  (0.1ms) BEGIN
7761
+  (0.2ms) ROLLBACK
7762
+  (0.1ms) BEGIN
7763
+  (0.2ms) ROLLBACK
7764
+  (0.1ms) BEGIN
7765
+  (0.2ms) SAVEPOINT active_record_1
7766
+ SQL (1.0ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7768
+ Something Load (0.4ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 527]]
7769
+  (0.2ms) ROLLBACK
7770
+  (0.1ms) BEGIN
7771
+  (0.1ms) SAVEPOINT active_record_1
7772
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7773
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7774
+  (0.1ms) ROLLBACK
7775
+  (0.1ms) BEGIN
7776
+  (0.1ms) SAVEPOINT active_record_1
7777
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"de\",\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7778
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7779
+  (0.1ms) ROLLBACK
7780
+  (0.1ms) BEGIN
7781
+  (0.1ms) SAVEPOINT active_record_1
7782
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7783
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7784
+  (0.1ms) SAVEPOINT active_record_1
7785
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7786
+  (0.1ms) ROLLBACK
7787
+  (0.1ms) BEGIN
7788
+  (0.1ms) SAVEPOINT active_record_1
7789
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", nil], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7790
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7791
+  (0.1ms) ROLLBACK
7792
+  (0.1ms) BEGIN
7793
+  (0.1ms) SAVEPOINT active_record_1
7794
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"en\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7795
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7796
+  (0.1ms) ROLLBACK
7797
+  (0.1ms) BEGIN
7798
+  (0.2ms) SAVEPOINT active_record_1
7799
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7800
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7801
+  (0.1ms) ROLLBACK
7802
+  (0.1ms) BEGIN
7803
+  (0.2ms) SAVEPOINT active_record_1
7804
+ SQL (0.4ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7805
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7806
+  (0.1ms) ROLLBACK
7807
+  (0.1ms) BEGIN
7808
+  (0.1ms) SAVEPOINT active_record_1
7809
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7810
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7811
+  (0.1ms) SAVEPOINT active_record_1
7812
+  (0.4ms) UPDATE "somethings" SET "locales" = '{"en","de"}', "updated_at" = '2013-06-19 20:13:38.966536' WHERE "somethings"."id" = 535
7813
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7814
+  (0.1ms) ROLLBACK
7815
+  (0.2ms) BEGIN
7816
+  (0.2ms) SAVEPOINT active_record_1
7817
+ SQL (0.5ms) INSERT INTO "somethings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "{\"en\",\"de\"}"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
7819
+ Something Load (0.2ms) SELECT "somethings".* FROM "somethings" WHERE "somethings"."id" = $1 LIMIT 1 [["id", 536]]
7820
+  (0.2ms) ROLLBACK
7821
+  (0.2ms) BEGIN
7822
+  (0.2ms) SAVEPOINT active_record_1
7823
+ SQL (0.9ms) INSERT INTO "noarraythings" ("created_at", "locales", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00], ["locales", "---\n- en\n- de\n"], ["updated_at", Wed, 19 Jun 2013 20:13:38 UTC +00:00]]
7824
+  (0.2ms) RELEASE SAVEPOINT active_record_1
7825
+ Noarraything Load (0.5ms) SELECT "noarraythings".* FROM "noarraythings" WHERE "noarraythings"."id" = $1 LIMIT 1 [["id", 47]]
7826
+  (0.2ms) ROLLBACK