committed_changes 0.0.1

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.
Files changed (46) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +65 -0
  3. data/Rakefile +38 -0
  4. data/lib/committed_changes.rb +38 -0
  5. data/lib/committed_changes/version.rb +3 -0
  6. data/lib/tasks/committed_changes_tasks.rake +4 -0
  7. data/test/committed_changes_test.rb +44 -0
  8. data/test/dummy/README.rdoc +261 -0
  9. data/test/dummy/Rakefile +7 -0
  10. data/test/dummy/app/assets/javascripts/application.js +15 -0
  11. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  12. data/test/dummy/app/controllers/application_controller.rb +3 -0
  13. data/test/dummy/app/helpers/application_helper.rb +2 -0
  14. data/test/dummy/app/models/vhost.rb +14 -0
  15. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  16. data/test/dummy/config.ru +4 -0
  17. data/test/dummy/config/application.rb +56 -0
  18. data/test/dummy/config/boot.rb +10 -0
  19. data/test/dummy/config/database.yml +25 -0
  20. data/test/dummy/config/environment.rb +5 -0
  21. data/test/dummy/config/environments/development.rb +37 -0
  22. data/test/dummy/config/environments/production.rb +67 -0
  23. data/test/dummy/config/environments/test.rb +37 -0
  24. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  25. data/test/dummy/config/initializers/inflections.rb +15 -0
  26. data/test/dummy/config/initializers/mime_types.rb +5 -0
  27. data/test/dummy/config/initializers/secret_token.rb +7 -0
  28. data/test/dummy/config/initializers/session_store.rb +8 -0
  29. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  30. data/test/dummy/config/locales/en.yml +5 -0
  31. data/test/dummy/config/routes.rb +58 -0
  32. data/test/dummy/db/development.sqlite3 +0 -0
  33. data/test/dummy/db/migrate/20120225221921_create_vhosts.rb +10 -0
  34. data/test/dummy/db/schema.rb +23 -0
  35. data/test/dummy/db/test.sqlite3 +0 -0
  36. data/test/dummy/log/development.log +52 -0
  37. data/test/dummy/log/test.log +2413 -0
  38. data/test/dummy/public/404.html +26 -0
  39. data/test/dummy/public/422.html +26 -0
  40. data/test/dummy/public/500.html +25 -0
  41. data/test/dummy/public/favicon.ico +0 -0
  42. data/test/dummy/script/rails +6 -0
  43. data/test/dummy/test/fixtures/vhosts.yml +3 -0
  44. data/test/dummy/test/unit/vhost_test.rb +7 -0
  45. data/test/test_helper.rb +10 -0
  46. metadata +158 -0
@@ -0,0 +1,10 @@
1
+ class CreateVhosts < ActiveRecord::Migration
2
+ def change
3
+ create_table :vhosts do |t|
4
+ t.string :name
5
+ t.string :domains
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,23 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120225221921) do
15
+
16
+ create_table "vhosts", :force => true do |t|
17
+ t.string "name"
18
+ t.string "domains"
19
+ t.datetime "created_at", :null => false
20
+ t.datetime "updated_at", :null => false
21
+ end
22
+
23
+ end
@@ -0,0 +1,52 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateVhosts (20120225221921)
7
+  (0.0ms) begin transaction
8
+  (0.4ms) CREATE TABLE "vhosts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "domains" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120225221921')
10
+  (0.7ms) commit transaction
11
+  (0.2ms) select sqlite_version(*)
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+  (0.0ms) PRAGMA index_list("vhosts")
14
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
+  (0.2ms) select sqlite_version(*)
16
+  (0.9ms) CREATE TABLE "vhosts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "domains" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
17
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
18
+  (0.0ms) PRAGMA index_list("schema_migrations")
19
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
+  (0.1ms) SELECT version FROM "schema_migrations"
21
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120225221921')
22
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
23
+ Migrating to CreateVhosts (20120225221921)
24
+  (0.2ms) select sqlite_version(*)
25
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
26
+  (0.0ms) PRAGMA index_list("vhosts")
27
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
28
+  (0.2ms) select sqlite_version(*)
29
+  (1.0ms) CREATE TABLE "vhosts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "domains" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
30
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
31
+  (0.0ms) PRAGMA index_list("schema_migrations")
32
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
+  (0.1ms) SELECT version FROM "schema_migrations"
34
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120225221921')
35
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
36
+ Migrating to CreateVhosts (20120225221921)
37
+  (0.2ms) select sqlite_version(*)
38
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
39
+  (0.0ms) PRAGMA index_list("vhosts")
40
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
41
+ Migrating to CreateVhosts (20120225221921)
42
+  (0.2ms) select sqlite_version(*)
43
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
44
+  (0.0ms) PRAGMA index_list("vhosts")
45
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
46
+  (0.4ms) select sqlite_version(*)
47
+  (2.8ms) CREATE TABLE "vhosts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "domains" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
48
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
49
+  (0.0ms) PRAGMA index_list("schema_migrations")
50
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
51
+  (0.1ms) SELECT version FROM "schema_migrations"
52
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20120225221921')
@@ -0,0 +1,2413 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateVhosts (20120225221921)
7
+  (0.0ms) begin transaction
8
+  (0.3ms) CREATE TABLE "vhosts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "domains" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120225221921')
10
+  (0.9ms) commit transaction
11
+  (0.2ms) select sqlite_version(*)
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+  (0.0ms) PRAGMA index_list("vhosts")
14
+  (0.3ms) begin transaction
15
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
16
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:42:51', '2012-02-25 22:42:51', 208889123)
17
+  (0.8ms) commit transaction
18
+  (0.0ms) begin transaction
19
+ Vhost Load (0.3ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
20
+  (0.1ms) SAVEPOINT active_record_1
21
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:42:51.524469' WHERE "vhosts"."id" = 208889123
22
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23
+  (0.3ms) rollback transaction
24
+  (0.3ms) begin transaction
25
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
26
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:43:10', '2012-02-25 22:43:10', 208889123)
27
+  (2.5ms) commit transaction
28
+  (0.1ms) begin transaction
29
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
30
+  (0.0ms) SAVEPOINT active_record_1
31
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:43:10.798115' WHERE "vhosts"."id" = 208889123
32
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33
+  (0.4ms) rollback transaction
34
+  (0.3ms) begin transaction
35
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
36
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:44:29', '2012-02-25 22:44:29', 208889123)
37
+  (2.3ms) commit transaction
38
+  (0.0ms) begin transaction
39
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
40
+  (0.0ms) SAVEPOINT active_record_1
41
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:44:29.676413' WHERE "vhosts"."id" = 208889123
42
+  (0.1ms) RELEASE SAVEPOINT active_record_1
43
+  (0.4ms) rollback transaction
44
+  (0.3ms) begin transaction
45
+ Fixture Delete (0.5ms) DELETE FROM "vhosts"
46
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:50:40', '2012-02-25 22:50:40', 208889123)
47
+  (1.8ms) commit transaction
48
+  (0.1ms) begin transaction
49
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
50
+  (0.1ms) SAVEPOINT active_record_1
51
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:50:40.482360' WHERE "vhosts"."id" = 208889123
52
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53
+  (0.5ms) rollback transaction
54
+  (0.3ms) begin transaction
55
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
56
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:50:57', '2012-02-25 22:50:57', 208889123)
57
+  (1.7ms) commit transaction
58
+  (0.0ms) begin transaction
59
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
60
+  (0.1ms) SAVEPOINT active_record_1
61
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:50:57.964357' WHERE "vhosts"."id" = 208889123
62
+  (0.0ms) RELEASE SAVEPOINT active_record_1
63
+  (0.3ms) rollback transaction
64
+  (0.3ms) begin transaction
65
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
66
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:51:13', '2012-02-25 22:51:13', 208889123)
67
+  (3.0ms) commit transaction
68
+  (0.0ms) begin transaction
69
+ Vhost Load (0.3ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
70
+  (0.0ms) SAVEPOINT active_record_1
71
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:51:13.587710' WHERE "vhosts"."id" = 208889123
72
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73
+  (0.4ms) rollback transaction
74
+  (0.3ms) begin transaction
75
+ Fixture Delete (0.7ms) DELETE FROM "vhosts"
76
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:51:20', '2012-02-25 22:51:20', 208889123)
77
+  (1.8ms) commit transaction
78
+  (0.0ms) begin transaction
79
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
80
+  (0.0ms) SAVEPOINT active_record_1
81
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:51:20.853170' WHERE "vhosts"."id" = 208889123
82
+  (0.0ms) RELEASE SAVEPOINT active_record_1
83
+  (0.3ms) rollback transaction
84
+  (0.3ms) begin transaction
85
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
86
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:53:18', '2012-02-25 22:53:18', 208889123)
87
+  (1.7ms) commit transaction
88
+  (0.0ms) begin transaction
89
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
90
+  (0.1ms) SAVEPOINT active_record_1
91
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:53:18.469998' WHERE "vhosts"."id" = 208889123
92
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93
+  (0.3ms) rollback transaction
94
+  (0.5ms) begin transaction
95
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
96
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:54:19', '2012-02-25 22:54:19', 208889123)
97
+  (2.1ms) commit transaction
98
+  (0.0ms) begin transaction
99
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
100
+  (0.1ms) SAVEPOINT active_record_1
101
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:54:19.309658' WHERE "vhosts"."id" = 208889123
102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103
+  (0.2ms) rollback transaction
104
+  (0.3ms) begin transaction
105
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
106
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 22:54:27', '2012-02-25 22:54:27', 208889123)
107
+  (3.2ms) commit transaction
108
+  (0.0ms) begin transaction
109
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
110
+  (0.0ms) SAVEPOINT active_record_1
111
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 22:54:27.554557' WHERE "vhosts"."id" = 208889123
112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
113
+  (0.3ms) rollback transaction
114
+  (0.3ms) begin transaction
115
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
116
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 23:03:41', '2012-02-25 23:03:41', 208889123)
117
+  (2.8ms) commit transaction
118
+  (0.1ms) begin transaction
119
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
120
+  (0.0ms) SAVEPOINT active_record_1
121
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 23:03:41.853302' WHERE "vhosts"."id" = 208889123
122
+  (0.1ms) RELEASE SAVEPOINT active_record_1
123
+  (0.4ms) rollback transaction
124
+  (0.3ms) begin transaction
125
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
126
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 23:08:38', '2012-02-25 23:08:38', 208889123)
127
+  (2.0ms) commit transaction
128
+  (0.0ms) begin transaction
129
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
130
+  (0.0ms) SAVEPOINT active_record_1
131
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 23:08:38.649355' WHERE "vhosts"."id" = 208889123
132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
133
+  (0.4ms) rollback transaction
134
+  (0.1ms) 
135
+  (0.1ms) BEGIN
136
+ PGError: ERROR: relation "vhosts" does not exist
137
+ LINE 4: WHERE a.attrelid = '"vhosts"'::regclass
138
+ ^
139
+ : SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull
140
+ FROM pg_attribute a LEFT JOIN pg_attrdef d
141
+ ON a.attrelid = d.adrelid AND a.attnum = d.adnum
142
+ WHERE a.attrelid = '"vhosts"'::regclass
143
+ AND a.attnum > 0 AND NOT a.attisdropped
144
+ ORDER BY a.attnum
145
+
146
+  (0.1ms) ROLLBACK
147
+  (0.1ms)
148
+  (13.5ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
149
+  (4.9ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
150
+ FROM pg_class t
151
+ INNER JOIN pg_index d ON t.oid = d.indrelid
152
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
153
+ WHERE i.relkind = 'i'
154
+ AND d.indisprimary = 'f'
155
+ AND t.relname = 'schema_migrations'
156
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
157
+ ORDER BY i.relname
158
+
159
+  (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
160
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
161
+ Migrating to CreateVhosts (20120225221921)
162
+  (0.0ms) BEGIN
163
+  (9.1ms) CREATE TABLE "vhosts" ("id" serial primary key, "name" character varying(255), "domains" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
164
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120225221921')
165
+  (0.3ms) COMMIT
166
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
167
+  (1.4ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
168
+ FROM pg_class t
169
+ INNER JOIN pg_index d ON t.oid = d.indrelid
170
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
171
+ WHERE i.relkind = 'i'
172
+ AND d.indisprimary = 'f'
173
+ AND t.relname = 'vhosts'
174
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
175
+ ORDER BY i.relname
176
+
177
+  (2.0ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "vhosts" DISABLE TRIGGER ALL
178
+  (0.1ms) BEGIN
179
+ Fixture Delete (0.4ms) DELETE FROM "vhosts"
180
+ Fixture Insert (0.5ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 23:55:45', '2012-02-25 23:55:45', 208889123)
181
+ Reset sequence (2.5ms)  SELECT setval('"vhosts_id_seq"', (SELECT COALESCE(MAX("id")+(SELECT increment_by FROM "vhosts_id_seq"), (SELECT min_value FROM "vhosts_id_seq")) FROM "vhosts"), false)
182
+ 
183
+  (0.4ms) COMMIT
184
+  (0.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "vhosts" ENABLE TRIGGER ALL
185
+  (0.0ms) BEGIN
186
+ Vhost Load (0.6ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
187
+  (0.3ms) SAVEPOINT active_record_1
188
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 23:55:45.763056' WHERE "vhosts"."id" = 208889123
189
+  (0.1ms) RELEASE SAVEPOINT active_record_1
190
+  (0.1ms) ROLLBACK
191
+  (0.4ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "vhosts" DISABLE TRIGGER ALL
192
+  (0.2ms) BEGIN
193
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
194
+ Fixture Insert (0.3ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 23:56:01', '2012-02-25 23:56:01', 208889123)
195
+ Reset sequence (0.6ms)  SELECT setval('"vhosts_id_seq"', (SELECT COALESCE(MAX("id")+(SELECT increment_by FROM "vhosts_id_seq"), (SELECT min_value FROM "vhosts_id_seq")) FROM "vhosts"), false)
196
+ 
197
+  (1.5ms) COMMIT
198
+  (0.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "vhosts" ENABLE TRIGGER ALL
199
+  (0.0ms) BEGIN
200
+ Vhost Load (0.5ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
201
+  (0.3ms) SAVEPOINT active_record_1
202
+  (0.7ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 23:56:01.570332' WHERE "vhosts"."id" = 208889123
203
+  (0.2ms) RELEASE SAVEPOINT active_record_1
204
+  (0.2ms) ROLLBACK
205
+  (0.4ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "vhosts" DISABLE TRIGGER ALL
206
+  (0.1ms) BEGIN
207
+ Fixture Delete (0.5ms) DELETE FROM "vhosts"
208
+ Fixture Insert (0.4ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 23:57:23', '2012-02-25 23:57:23', 208889123)
209
+ Reset sequence (0.7ms)  SELECT setval('"vhosts_id_seq"', (SELECT COALESCE(MAX("id")+(SELECT increment_by FROM "vhosts_id_seq"), (SELECT min_value FROM "vhosts_id_seq")) FROM "vhosts"), false)
210
+ 
211
+  (0.3ms) COMMIT
212
+  (0.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "vhosts" ENABLE TRIGGER ALL
213
+  (0.1ms) BEGIN
214
+ Vhost Load (0.5ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
215
+  (0.1ms) SAVEPOINT active_record_1
216
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 23:57:23.493822' WHERE "vhosts"."id" = 208889123
217
+  (0.1ms) RELEASE SAVEPOINT active_record_1
218
+  (0.1ms) ROLLBACK
219
+  (0.3ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "vhosts" DISABLE TRIGGER ALL
220
+  (0.1ms) BEGIN
221
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
222
+ Fixture Insert (0.5ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 23:57:42', '2012-02-25 23:57:42', 208889123)
223
+ Reset sequence (0.5ms)  SELECT setval('"vhosts_id_seq"', (SELECT COALESCE(MAX("id")+(SELECT increment_by FROM "vhosts_id_seq"), (SELECT min_value FROM "vhosts_id_seq")) FROM "vhosts"), false)
224
+ 
225
+  (2.5ms) COMMIT
226
+  (0.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "vhosts" ENABLE TRIGGER ALL
227
+  (0.1ms) BEGIN
228
+ Vhost Load (0.6ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
229
+  (0.1ms) SAVEPOINT active_record_1
230
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 23:57:42.758592' WHERE "vhosts"."id" = 208889123
231
+  (0.1ms) RELEASE SAVEPOINT active_record_1
232
+  (0.1ms) ROLLBACK
233
+  (0.3ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "vhosts" DISABLE TRIGGER ALL
234
+  (0.1ms) BEGIN
235
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
236
+ Fixture Insert (0.4ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 23:58:04', '2012-02-25 23:58:04', 208889123)
237
+ Reset sequence (0.8ms)  SELECT setval('"vhosts_id_seq"', (SELECT COALESCE(MAX("id")+(SELECT increment_by FROM "vhosts_id_seq"), (SELECT min_value FROM "vhosts_id_seq")) FROM "vhosts"), false)
238
+ 
239
+  (2.4ms) COMMIT
240
+  (0.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "vhosts" ENABLE TRIGGER ALL
241
+  (0.1ms) BEGIN
242
+ Vhost Load (0.6ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
243
+  (0.1ms) SAVEPOINT active_record_1
244
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 23:58:04.667666' WHERE "vhosts"."id" = 208889123
245
+  (0.1ms) RELEASE SAVEPOINT active_record_1
246
+  (0.1ms) ROLLBACK
247
+  (0.4ms) ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "vhosts" DISABLE TRIGGER ALL
248
+  (0.1ms) BEGIN
249
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
250
+ Fixture Insert (0.3ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-25 23:59:48', '2012-02-25 23:59:48', 208889123)
251
+ Reset sequence (0.8ms)  SELECT setval('"vhosts_id_seq"', (SELECT COALESCE(MAX("id")+(SELECT increment_by FROM "vhosts_id_seq"), (SELECT min_value FROM "vhosts_id_seq")) FROM "vhosts"), false)
252
+ 
253
+  (1.4ms) COMMIT
254
+  (0.1ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "vhosts" ENABLE TRIGGER ALL
255
+ Vhost Load (0.6ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
256
+  (0.2ms) BEGIN
257
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-25 23:59:48.155195' WHERE "vhosts"."id" = 208889123
258
+  (0.2ms) COMMIT
259
+  (0.3ms) begin transaction
260
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
261
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:00:15', '2012-02-26 00:00:15', 208889123)
262
+  (2.1ms) commit transaction
263
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
264
+  (0.1ms) begin transaction
265
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:00:15.692092' WHERE "vhosts"."id" = 208889123
266
+  (0.8ms) commit transaction
267
+  (0.3ms) begin transaction
268
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
269
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:00:26', '2012-02-26 00:00:26', 208889123)
270
+  (3.4ms) commit transaction
271
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
272
+  (0.1ms) begin transaction
273
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:00:26.114928' WHERE "vhosts"."id" = 208889123
274
+  (0.7ms) commit transaction
275
+  (0.3ms) begin transaction
276
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
277
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:03:39', '2012-02-26 00:03:39', 208889123)
278
+  (2.5ms) commit transaction
279
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
280
+  (0.0ms) begin transaction
281
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:03:39.676131' WHERE "vhosts"."id" = 208889123
282
+  (1.0ms) commit transaction
283
+  (0.0ms) begin transaction
284
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
285
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:03:39', '2012-02-26 00:03:39', 208889123)
286
+  (0.9ms) commit transaction
287
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
288
+  (0.0ms) begin transaction
289
+  (0.2ms) UPDATE "vhosts" SET "domains" = NULL, "updated_at" = '2012-02-26 00:03:39.683282' WHERE "vhosts"."id" = 208889123
290
+  (0.9ms) commit transaction
291
+  (0.3ms) begin transaction
292
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
293
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:03:48', '2012-02-26 00:03:48', 208889123)
294
+  (2.3ms) commit transaction
295
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
296
+  (0.0ms) begin transaction
297
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:03:48.473757' WHERE "vhosts"."id" = 208889123
298
+  (1.0ms) commit transaction
299
+  (0.0ms) begin transaction
300
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
301
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:03:48', '2012-02-26 00:03:48', 208889123)
302
+  (0.9ms) commit transaction
303
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
304
+  (0.0ms) begin transaction
305
+  (0.3ms) UPDATE "vhosts" SET "domains" = NULL, "updated_at" = '2012-02-26 00:03:48.480570' WHERE "vhosts"."id" = 208889123
306
+  (0.8ms) commit transaction
307
+  (0.3ms) begin transaction
308
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
309
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:03:58', '2012-02-26 00:03:58', 208889123)
310
+  (3.3ms) commit transaction
311
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
312
+  (0.1ms) begin transaction
313
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:03:58.388975' WHERE "vhosts"."id" = 208889123
314
+  (0.7ms) commit transaction
315
+  (0.0ms) begin transaction
316
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
317
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:03:58', '2012-02-26 00:03:58', 208889123)
318
+  (0.8ms) commit transaction
319
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
320
+  (0.0ms) begin transaction
321
+  (0.2ms) UPDATE "vhosts" SET "domains" = NULL, "updated_at" = '2012-02-26 00:03:58.395864' WHERE "vhosts"."id" = 208889123
322
+  (0.8ms) commit transaction
323
+  (0.4ms) begin transaction
324
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
325
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:05:19', '2012-02-26 00:05:19', 208889123)
326
+  (13.6ms) commit transaction
327
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
328
+  (0.1ms) begin transaction
329
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:05:19.748051' WHERE "vhosts"."id" = 208889123
330
+  (1.0ms) commit transaction
331
+  (0.0ms) begin transaction
332
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
333
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:05:19', '2012-02-26 00:05:19', 208889123)
334
+  (1.1ms) commit transaction
335
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
336
+  (0.0ms) begin transaction
337
+  (0.2ms) UPDATE "vhosts" SET "domains" = NULL, "updated_at" = '2012-02-26 00:05:19.755066' WHERE "vhosts"."id" = 208889123
338
+  (0.9ms) commit transaction
339
+  (0.3ms) begin transaction
340
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
341
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:06:18', '2012-02-26 00:06:18', 208889123)
342
+  (2.0ms) commit transaction
343
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
344
+  (0.0ms) begin transaction
345
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:06:18.949708' WHERE "vhosts"."id" = 208889123
346
+  (0.7ms) commit transaction
347
+  (0.1ms) begin transaction
348
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
349
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:06:18', '2012-02-26 00:06:18', 208889123)
350
+  (0.7ms) commit transaction
351
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
352
+  (0.0ms) begin transaction
353
+  (0.0ms) rollback transaction
354
+  (0.3ms) begin transaction
355
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
356
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:06:30', '2012-02-26 00:06:30', 208889123)
357
+  (2.0ms) commit transaction
358
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
359
+  (0.1ms) begin transaction
360
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:06:30.294511' WHERE "vhosts"."id" = 208889123
361
+  (0.6ms) commit transaction
362
+  (0.1ms) begin transaction
363
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
364
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:06:30', '2012-02-26 00:06:30', 208889123)
365
+  (0.6ms) commit transaction
366
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
367
+  (0.0ms) begin transaction
368
+  (0.0ms) rollback transaction
369
+  (0.3ms) begin transaction
370
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
371
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:06:59', '2012-02-26 00:06:59', 208889123)
372
+  (3.5ms) commit transaction
373
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
374
+  (0.0ms) begin transaction
375
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:06:59.481469' WHERE "vhosts"."id" = 208889123
376
+  (0.7ms) commit transaction
377
+  (0.1ms) begin transaction
378
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
379
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:06:59', '2012-02-26 00:06:59', 208889123)
380
+  (0.6ms) commit transaction
381
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
382
+  (0.0ms) begin transaction
383
+  (0.1ms) rollback transaction
384
+  (0.3ms) begin transaction
385
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
386
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:07:59', '2012-02-26 00:07:59', 208889123)
387
+  (3.1ms) commit transaction
388
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
389
+  (0.0ms) begin transaction
390
+  (0.1ms) rollback transaction
391
+  (0.0ms) begin transaction
392
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
393
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:07:59', '2012-02-26 00:07:59', 208889123)
394
+  (0.7ms) commit transaction
395
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
396
+  (0.0ms) begin transaction
397
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:07:59.758280' WHERE "vhosts"."id" = 208889123
398
+  (0.8ms) commit transaction
399
+  (0.3ms) begin transaction
400
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
401
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:08:16', '2012-02-26 00:08:16', 208889123)
402
+  (3.5ms) commit transaction
403
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
404
+  (0.0ms) begin transaction
405
+  (0.1ms) rollback transaction
406
+  (0.0ms) begin transaction
407
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
408
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:08:16', '2012-02-26 00:08:16', 208889123)
409
+  (0.8ms) commit transaction
410
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
411
+  (0.0ms) begin transaction
412
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:08:16.859363' WHERE "vhosts"."id" = 208889123
413
+  (0.9ms) commit transaction
414
+  (0.3ms) begin transaction
415
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
416
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:34:58', '2012-02-26 00:34:58', 208889123)
417
+  (1.0ms) commit transaction
418
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
419
+  (0.1ms) begin transaction
420
+  (0.1ms) rollback transaction
421
+  (0.1ms) begin transaction
422
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
423
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:34:58', '2012-02-26 00:34:58', 208889123)
424
+  (0.6ms) commit transaction
425
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
426
+  (0.0ms) begin transaction
427
+  (0.0ms) commit transaction
428
+  (0.1ms) begin transaction
429
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
430
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:34:58', '2012-02-26 00:34:58', 208889123)
431
+  (1.9ms) commit transaction
432
+ Vhost Load (0.3ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
433
+  (0.1ms) begin transaction
434
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:34:58.476231' WHERE "vhosts"."id" = 208889123
435
+  (0.8ms) commit transaction
436
+  (0.3ms) begin transaction
437
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
438
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:41:59', '2012-02-26 00:41:59', 208889123)
439
+  (2.4ms) commit transaction
440
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
441
+  (0.1ms) begin transaction
442
+  (0.1ms) commit transaction
443
+  (0.1ms) begin transaction
444
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:41:59.853733' WHERE "vhosts"."id" = 208889123
445
+  (0.8ms) commit transaction
446
+  (0.1ms) begin transaction
447
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
448
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:41:59', '2012-02-26 00:41:59', 208889123)
449
+  (1.3ms) commit transaction
450
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
451
+  (0.0ms) begin transaction
452
+  (0.0ms) rollback transaction
453
+  (0.1ms) begin transaction
454
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
455
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:41:59', '2012-02-26 00:41:59', 208889123)
456
+  (0.7ms) commit transaction
457
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
458
+  (0.0ms) begin transaction
459
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:41:59.870234' WHERE "vhosts"."id" = 208889123
460
+  (1.0ms) commit transaction
461
+  (0.3ms) begin transaction
462
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
463
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:42:18', '2012-02-26 00:42:18', 208889123)
464
+  (2.3ms) commit transaction
465
+ Vhost Load (0.3ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
466
+  (0.1ms) begin transaction
467
+  (0.1ms) commit transaction
468
+  (0.0ms) begin transaction
469
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:42:18.339856' WHERE "vhosts"."id" = 208889123
470
+  (1.0ms) commit transaction
471
+  (0.1ms) begin transaction
472
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
473
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:42:18', '2012-02-26 00:42:18', 208889123)
474
+  (0.7ms) commit transaction
475
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
476
+  (0.0ms) begin transaction
477
+  (0.0ms) rollback transaction
478
+  (0.1ms) begin transaction
479
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
480
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:42:18', '2012-02-26 00:42:18', 208889123)
481
+  (0.7ms) commit transaction
482
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
483
+  (0.0ms) begin transaction
484
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:42:18.356697' WHERE "vhosts"."id" = 208889123
485
+  (0.9ms) commit transaction
486
+  (0.3ms) begin transaction
487
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
488
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:47:59', '2012-02-26 00:47:59', 208889123)
489
+  (2.0ms) commit transaction
490
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
491
+  (0.1ms) begin transaction
492
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:47:59.474475' WHERE "vhosts"."id" = 208889123
493
+  (0.7ms) commit transaction
494
+  (0.1ms) begin transaction
495
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
496
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:47:59', '2012-02-26 00:47:59', 208889123)
497
+  (0.9ms) commit transaction
498
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
499
+  (0.0ms) begin transaction
500
+  (0.0ms) rollback transaction
501
+  (0.0ms) begin transaction
502
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
503
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 00:47:59', '2012-02-26 00:47:59', 208889123)
504
+  (0.8ms) commit transaction
505
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
506
+  (0.0ms) begin transaction
507
+  (0.0ms) commit transaction
508
+  (0.0ms) begin transaction
509
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 00:47:59.489348' WHERE "vhosts"."id" = 208889123
510
+  (0.7ms) commit transaction
511
+  (0.3ms) begin transaction
512
+ Fixture Delete (0.7ms) DELETE FROM "vhosts"
513
+ Fixture Insert (0.5ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:05:27', '2012-02-26 01:05:27', 208889123)
514
+  (0.6ms) commit transaction
515
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
516
+  (0.1ms) begin transaction
517
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:05:27.821042' WHERE "vhosts"."id" = 208889123
518
+  (0.9ms) commit transaction
519
+  (0.0ms) begin transaction
520
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
521
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:05:27', '2012-02-26 01:05:27', 208889123)
522
+  (1.1ms) commit transaction
523
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
524
+  (0.0ms) begin transaction
525
+  (0.0ms) rollback transaction
526
+  (0.0ms) begin transaction
527
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
528
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:05:27', '2012-02-26 01:05:27', 208889123)
529
+  (1.0ms) commit transaction
530
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
531
+  (0.0ms) begin transaction
532
+  (0.0ms) commit transaction
533
+  (0.0ms) begin transaction
534
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:05:27.838985' WHERE "vhosts"."id" = 208889123
535
+  (0.9ms) commit transaction
536
+  (0.3ms) begin transaction
537
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
538
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:26:18', '2012-02-26 01:26:18', 208889123)
539
+  (0.9ms) commit transaction
540
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
541
+  (0.1ms) begin transaction
542
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:26:19.014025' WHERE "vhosts"."id" = 208889123
543
+  (0.6ms) commit transaction
544
+  (0.1ms) begin transaction
545
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
546
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:26:19', '2012-02-26 01:26:19', 208889123)
547
+  (0.7ms) commit transaction
548
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
549
+  (0.0ms) begin transaction
550
+  (0.0ms) rollback transaction
551
+  (0.0ms) begin transaction
552
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
553
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:26:19', '2012-02-26 01:26:19', 208889123)
554
+  (0.6ms) commit transaction
555
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
556
+  (0.0ms) begin transaction
557
+  (0.0ms) commit transaction
558
+  (0.0ms) begin transaction
559
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:26:19.032689' WHERE "vhosts"."id" = 208889123
560
+  (0.6ms) commit transaction
561
+  (0.3ms) begin transaction
562
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
563
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:27:08', '2012-02-26 01:27:08', 208889123)
564
+  (1.9ms) commit transaction
565
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
566
+  (0.1ms) begin transaction
567
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:27:08.383419' WHERE "vhosts"."id" = 208889123
568
+  (0.6ms) commit transaction
569
+  (0.1ms) begin transaction
570
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
571
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:27:08', '2012-02-26 01:27:08', 208889123)
572
+  (0.7ms) commit transaction
573
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
574
+  (0.1ms) begin transaction
575
+  (0.1ms) rollback transaction
576
+  (0.0ms) begin transaction
577
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
578
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:27:08', '2012-02-26 01:27:08', 208889123)
579
+  (0.6ms) commit transaction
580
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
581
+  (0.0ms) begin transaction
582
+  (0.0ms) commit transaction
583
+  (0.0ms) begin transaction
584
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:27:08.402043' WHERE "vhosts"."id" = 208889123
585
+  (0.6ms) commit transaction
586
+  (0.3ms) begin transaction
587
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
588
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:27:18', '2012-02-26 01:27:18', 208889123)
589
+  (1.8ms) commit transaction
590
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
591
+  (0.0ms) begin transaction
592
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:27:18.542725' WHERE "vhosts"."id" = 208889123
593
+  (0.9ms) commit transaction
594
+  (0.0ms) begin transaction
595
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
596
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:27:18', '2012-02-26 01:27:18', 208889123)
597
+  (1.0ms) commit transaction
598
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
599
+  (0.0ms) begin transaction
600
+  (0.0ms) rollback transaction
601
+  (0.0ms) begin transaction
602
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
603
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:27:18', '2012-02-26 01:27:18', 208889123)
604
+  (0.8ms) commit transaction
605
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
606
+  (0.0ms) begin transaction
607
+  (0.0ms) commit transaction
608
+  (0.0ms) begin transaction
609
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:27:18.557872' WHERE "vhosts"."id" = 208889123
610
+  (0.8ms) commit transaction
611
+  (0.3ms) begin transaction
612
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
613
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:28:09', '2012-02-26 01:28:09', 208889123)
614
+  (2.0ms) commit transaction
615
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
616
+  (0.0ms) begin transaction
617
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:28:09.454731' WHERE "vhosts"."id" = 208889123
618
+  (1.0ms) commit transaction
619
+  (0.0ms) begin transaction
620
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
621
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:28:09', '2012-02-26 01:28:09', 208889123)
622
+  (0.9ms) commit transaction
623
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
624
+  (0.0ms) begin transaction
625
+  (0.0ms) rollback transaction
626
+  (0.0ms) begin transaction
627
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
628
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:28:09', '2012-02-26 01:28:09', 208889123)
629
+  (1.0ms) commit transaction
630
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
631
+  (0.0ms) begin transaction
632
+  (0.0ms) commit transaction
633
+  (0.0ms) begin transaction
634
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:28:09.469470' WHERE "vhosts"."id" = 208889123
635
+  (1.0ms) commit transaction
636
+  (0.3ms) begin transaction
637
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
638
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:29:04', '2012-02-26 01:29:04', 208889123)
639
+  (2.8ms) commit transaction
640
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
641
+  (0.1ms) begin transaction
642
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:29:04.404241' WHERE "vhosts"."id" = 208889123
643
+  (0.7ms) commit transaction
644
+  (0.1ms) begin transaction
645
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
646
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:29:04', '2012-02-26 01:29:04', 208889123)
647
+  (0.6ms) commit transaction
648
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
649
+  (0.0ms) begin transaction
650
+  (0.0ms) rollback transaction
651
+  (0.1ms) begin transaction
652
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
653
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:29:04', '2012-02-26 01:29:04', 208889123)
654
+  (0.6ms) commit transaction
655
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
656
+  (0.0ms) begin transaction
657
+  (0.0ms) commit transaction
658
+  (0.0ms) begin transaction
659
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:29:04.422245' WHERE "vhosts"."id" = 208889123
660
+  (0.6ms) commit transaction
661
+  (0.3ms) begin transaction
662
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
663
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:30:39', '2012-02-26 01:30:39', 208889123)
664
+  (2.0ms) commit transaction
665
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
666
+  (0.0ms) begin transaction
667
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:30:39.893710' WHERE "vhosts"."id" = 208889123
668
+  (0.9ms) commit transaction
669
+  (0.0ms) begin transaction
670
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
671
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:30:39', '2012-02-26 01:30:39', 208889123)
672
+  (0.9ms) commit transaction
673
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
674
+  (0.0ms) begin transaction
675
+  (0.0ms) rollback transaction
676
+  (0.0ms) begin transaction
677
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
678
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:30:39', '2012-02-26 01:30:39', 208889123)
679
+  (0.7ms) commit transaction
680
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
681
+  (0.0ms) begin transaction
682
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 01:30:39.908235' WHERE "vhosts"."id" = 208889123
683
+  (0.9ms) commit transaction
684
+  (0.0ms) begin transaction
685
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:30:39.910085' WHERE "vhosts"."id" = 208889123
686
+  (1.0ms) commit transaction
687
+  (0.3ms) begin transaction
688
+ Fixture Delete (0.6ms) DELETE FROM "vhosts"
689
+ Fixture Insert (0.6ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:53:28', '2012-02-26 01:53:28', 208889123)
690
+  (0.7ms) commit transaction
691
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
692
+  (0.0ms) begin transaction
693
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:53:28.564890' WHERE "vhosts"."id" = 208889123
694
+  (0.8ms) commit transaction
695
+  (0.0ms) begin transaction
696
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
697
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:53:28', '2012-02-26 01:53:28', 208889123)
698
+  (0.8ms) commit transaction
699
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
700
+  (0.0ms) begin transaction
701
+  (0.0ms) rollback transaction
702
+  (0.0ms) begin transaction
703
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
704
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:53:28', '2012-02-26 01:53:28', 208889123)
705
+  (0.7ms) commit transaction
706
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
707
+  (0.0ms) begin transaction
708
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 01:53:28.581690' WHERE "vhosts"."id" = 208889123
709
+  (1.0ms) commit transaction
710
+  (0.0ms) begin transaction
711
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:53:28.583669' WHERE "vhosts"."id" = 208889123
712
+  (1.0ms) commit transaction
713
+  (0.2ms) begin transaction
714
+  (0.0ms) rollback transaction
715
+  (0.0ms) begin transaction
716
+  (0.0ms) rollback transaction
717
+  (0.0ms) begin transaction
718
+  (0.1ms) rollback transaction
719
+  (0.3ms) begin transaction
720
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
721
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:59:51', '2012-02-26 01:59:51', 208889123)
722
+  (1.9ms) commit transaction
723
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
724
+  (0.1ms) begin transaction
725
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:59:51.311187' WHERE "vhosts"."id" = 208889123
726
+  (0.7ms) commit transaction
727
+  (0.0ms) begin transaction
728
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
729
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:59:51', '2012-02-26 01:59:51', 208889123)
730
+  (0.8ms) commit transaction
731
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
732
+  (0.0ms) begin transaction
733
+  (0.0ms) rollback transaction
734
+  (0.0ms) begin transaction
735
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
736
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 01:59:51', '2012-02-26 01:59:51', 208889123)
737
+  (0.9ms) commit transaction
738
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
739
+  (0.0ms) begin transaction
740
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 01:59:51.325045' WHERE "vhosts"."id" = 208889123
741
+  (0.8ms) commit transaction
742
+  (0.0ms) begin transaction
743
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 01:59:51.326932' WHERE "vhosts"."id" = 208889123
744
+  (0.7ms) commit transaction
745
+  (0.3ms) begin transaction
746
+ Fixture Delete (0.7ms) DELETE FROM "vhosts"
747
+ Fixture Insert (0.6ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 12:25:28', '2012-02-26 12:25:28', 208889123)
748
+  (0.8ms) commit transaction
749
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
750
+  (0.1ms) begin transaction
751
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 12:25:28.489955' WHERE "vhosts"."id" = 208889123
752
+  (0.7ms) commit transaction
753
+  (0.0ms) begin transaction
754
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
755
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 12:25:28', '2012-02-26 12:25:28', 208889123)
756
+  (1.0ms) commit transaction
757
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
758
+  (0.0ms) begin transaction
759
+  (0.0ms) rollback transaction
760
+  (0.0ms) begin transaction
761
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
762
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 12:25:28', '2012-02-26 12:25:28', 208889123)
763
+  (0.7ms) commit transaction
764
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
765
+  (0.0ms) begin transaction
766
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 12:25:28.509304' WHERE "vhosts"."id" = 208889123
767
+  (0.7ms) commit transaction
768
+  (0.0ms) begin transaction
769
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 12:25:28.511028' WHERE "vhosts"."id" = 208889123
770
+  (0.8ms) commit transaction
771
+  (0.3ms) begin transaction
772
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
773
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:49:57', '2012-02-26 13:49:57', 208889123)
774
+  (0.8ms) commit transaction
775
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
776
+  (0.1ms) begin transaction
777
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:49:57.530083' WHERE "vhosts"."id" = 208889123
778
+  (0.6ms) commit transaction
779
+  (0.0ms) begin transaction
780
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
781
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:49:57', '2012-02-26 13:49:57', 208889123)
782
+  (0.9ms) commit transaction
783
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
784
+  (0.0ms) begin transaction
785
+  (0.0ms) rollback transaction
786
+  (0.0ms) begin transaction
787
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
788
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:49:57', '2012-02-26 13:49:57', 208889123)
789
+  (0.9ms) commit transaction
790
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
791
+  (0.0ms) begin transaction
792
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:49:57.548043' WHERE "vhosts"."id" = 208889123
793
+  (0.8ms) commit transaction
794
+  (0.0ms) begin transaction
795
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:49:57.549813' WHERE "vhosts"."id" = 208889123
796
+  (0.9ms) commit transaction
797
+  (0.3ms) begin transaction
798
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
799
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:51:06', '2012-02-26 13:51:06', 208889123)
800
+  (2.3ms) commit transaction
801
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
802
+  (0.1ms) begin transaction
803
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:51:06.147192' WHERE "vhosts"."id" = 208889123
804
+  (0.6ms) commit transaction
805
+  (0.1ms) begin transaction
806
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
807
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:51:06', '2012-02-26 13:51:06', 208889123)
808
+  (2.2ms) commit transaction
809
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
810
+  (0.1ms) begin transaction
811
+  (0.1ms) rollback transaction
812
+  (0.0ms) begin transaction
813
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
814
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:51:06', '2012-02-26 13:51:06', 208889123)
815
+  (0.5ms) commit transaction
816
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
817
+  (0.0ms) begin transaction
818
+  (0.3ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:51:06.166906' WHERE "vhosts"."id" = 208889123
819
+  (0.5ms) commit transaction
820
+  (0.0ms) begin transaction
821
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:51:06.168823' WHERE "vhosts"."id" = 208889123
822
+  (0.5ms) commit transaction
823
+  (0.0ms) begin transaction
824
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
825
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:51:06', '2012-02-26 13:51:06', 208889123)
826
+  (0.5ms) commit transaction
827
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
828
+  (0.0ms) begin transaction
829
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:51:06.173751' WHERE "vhosts"."id" = 208889123
830
+  (0.6ms) commit transaction
831
+  (0.3ms) begin transaction
832
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
833
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:51:59', '2012-02-26 13:51:59', 208889123)
834
+  (1.0ms) commit transaction
835
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
836
+  (0.0ms) begin transaction
837
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:51:59.766824' WHERE "vhosts"."id" = 208889123
838
+  (0.7ms) commit transaction
839
+  (0.1ms) begin transaction
840
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
841
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:51:59', '2012-02-26 13:51:59', 208889123)
842
+  (0.6ms) commit transaction
843
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
844
+  (0.0ms) begin transaction
845
+  (0.0ms) rollback transaction
846
+  (0.0ms) begin transaction
847
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
848
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:51:59', '2012-02-26 13:51:59', 208889123)
849
+  (0.9ms) commit transaction
850
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
851
+  (0.0ms) begin transaction
852
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:51:59.783893' WHERE "vhosts"."id" = 208889123
853
+  (0.7ms) commit transaction
854
+  (0.0ms) begin transaction
855
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:51:59.785567' WHERE "vhosts"."id" = 208889123
856
+  (0.9ms) commit transaction
857
+  (0.0ms) begin transaction
858
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
859
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:51:59', '2012-02-26 13:51:59', 208889123)
860
+  (0.8ms) commit transaction
861
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
862
+  (0.0ms) begin transaction
863
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:51:59.789899' WHERE "vhosts"."id" = 208889123
864
+  (0.9ms) commit transaction
865
+  (0.3ms) begin transaction
866
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
867
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:52:35', '2012-02-26 13:52:35', 208889123)
868
+  (2.3ms) commit transaction
869
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
870
+  (0.1ms) begin transaction
871
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:52:35.960278' WHERE "vhosts"."id" = 208889123
872
+  (0.6ms) commit transaction
873
+  (0.1ms) begin transaction
874
+ Fixture Delete (0.6ms) DELETE FROM "vhosts"
875
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:52:35', '2012-02-26 13:52:35', 208889123)
876
+  (0.6ms) commit transaction
877
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
878
+  (0.0ms) begin transaction
879
+  (0.1ms) rollback transaction
880
+  (0.0ms) begin transaction
881
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
882
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:52:35', '2012-02-26 13:52:35', 208889123)
883
+  (0.5ms) commit transaction
884
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
885
+  (0.0ms) begin transaction
886
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:52:35.977497' WHERE "vhosts"."id" = 208889123
887
+  (0.5ms) commit transaction
888
+  (0.0ms) begin transaction
889
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:52:35.979103' WHERE "vhosts"."id" = 208889123
890
+  (0.5ms) commit transaction
891
+  (0.0ms) begin transaction
892
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
893
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:52:35', '2012-02-26 13:52:35', 208889123)
894
+  (0.8ms) commit transaction
895
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
896
+  (0.0ms) begin transaction
897
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:52:35.984291' WHERE "vhosts"."id" = 208889123
898
+  (0.6ms) commit transaction
899
+  (0.3ms) begin transaction
900
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
901
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:53:15', '2012-02-26 13:53:15', 208889123)
902
+  (3.1ms) commit transaction
903
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
904
+  (0.1ms) begin transaction
905
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:53:15.546707' WHERE "vhosts"."id" = 208889123
906
+  (0.5ms) commit transaction
907
+  (0.1ms) begin transaction
908
+ Fixture Delete (0.7ms) DELETE FROM "vhosts"
909
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:53:15', '2012-02-26 13:53:15', 208889123)
910
+  (0.5ms) commit transaction
911
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
912
+  (0.0ms) begin transaction
913
+  (0.0ms) rollback transaction
914
+  (0.0ms) begin transaction
915
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
916
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:53:15', '2012-02-26 13:53:15', 208889123)
917
+  (0.6ms) commit transaction
918
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
919
+  (0.0ms) begin transaction
920
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:53:15.564976' WHERE "vhosts"."id" = 208889123
921
+  (0.6ms) commit transaction
922
+  (0.1ms) begin transaction
923
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:53:15.567139' WHERE "vhosts"."id" = 208889123
924
+  (0.5ms) commit transaction
925
+  (0.0ms) begin transaction
926
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
927
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:53:15', '2012-02-26 13:53:15', 208889123)
928
+  (0.5ms) commit transaction
929
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
930
+  (0.0ms) begin transaction
931
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:53:15.571687' WHERE "vhosts"."id" = 208889123
932
+  (0.8ms) commit transaction
933
+  (0.3ms) begin transaction
934
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
935
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:53:35', '2012-02-26 13:53:35', 208889123)
936
+  (2.5ms) commit transaction
937
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
938
+  (0.1ms) begin transaction
939
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:53:35.655813' WHERE "vhosts"."id" = 208889123
940
+  (0.5ms) commit transaction
941
+  (0.0ms) begin transaction
942
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
943
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:53:35', '2012-02-26 13:53:35', 208889123)
944
+  (0.5ms) commit transaction
945
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
946
+  (0.0ms) begin transaction
947
+  (0.0ms) rollback transaction
948
+  (0.0ms) begin transaction
949
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
950
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:53:35', '2012-02-26 13:53:35', 208889123)
951
+  (0.6ms) commit transaction
952
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
953
+  (0.0ms) begin transaction
954
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:53:35.674169' WHERE "vhosts"."id" = 208889123
955
+  (0.5ms) commit transaction
956
+  (0.0ms) begin transaction
957
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:53:35.676036' WHERE "vhosts"."id" = 208889123
958
+  (0.5ms) commit transaction
959
+  (0.0ms) begin transaction
960
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
961
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:53:35', '2012-02-26 13:53:35', 208889123)
962
+  (0.5ms) commit transaction
963
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
964
+  (0.0ms) begin transaction
965
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:53:35.680412' WHERE "vhosts"."id" = 208889123
966
+  (0.6ms) commit transaction
967
+  (0.3ms) begin transaction
968
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
969
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:56:36', '2012-02-26 13:56:36', 208889123)
970
+  (2.2ms) commit transaction
971
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
972
+  (0.0ms) begin transaction
973
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:56:36.657538' WHERE "vhosts"."id" = 208889123
974
+  (0.5ms) commit transaction
975
+  (0.0ms) begin transaction
976
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
977
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:56:36', '2012-02-26 13:56:36', 208889123)
978
+  (0.6ms) commit transaction
979
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
980
+  (0.0ms) begin transaction
981
+  (0.0ms) rollback transaction
982
+  (0.0ms) begin transaction
983
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
984
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:56:36', '2012-02-26 13:56:36', 208889123)
985
+  (0.7ms) commit transaction
986
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
987
+  (0.0ms) begin transaction
988
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:56:36.672292' WHERE "vhosts"."id" = 208889123
989
+  (0.9ms) commit transaction
990
+  (0.0ms) begin transaction
991
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:56:36.674185' WHERE "vhosts"."id" = 208889123
992
+  (0.9ms) commit transaction
993
+  (0.0ms) begin transaction
994
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
995
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:56:36', '2012-02-26 13:56:36', 208889123)
996
+  (0.8ms) commit transaction
997
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
998
+  (0.0ms) begin transaction
999
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:56:36.678735' WHERE "vhosts"."id" = 208889123
1000
+  (0.5ms) commit transaction
1001
+  (0.3ms) begin transaction
1002
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1003
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:57:07', '2012-02-26 13:57:07', 208889123)
1004
+  (2.1ms) commit transaction
1005
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1006
+  (0.1ms) begin transaction
1007
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:57:07.141549' WHERE "vhosts"."id" = 208889123
1008
+  (0.5ms) commit transaction
1009
+  (0.1ms) begin transaction
1010
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1011
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:57:07', '2012-02-26 13:57:07', 208889123)
1012
+  (0.6ms) commit transaction
1013
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1014
+  (0.0ms) begin transaction
1015
+  (0.1ms) rollback transaction
1016
+  (0.0ms) begin transaction
1017
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1018
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:57:07', '2012-02-26 13:57:07', 208889123)
1019
+  (0.6ms) commit transaction
1020
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1021
+  (0.0ms) begin transaction
1022
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:57:07.158879' WHERE "vhosts"."id" = 208889123
1023
+  (0.6ms) commit transaction
1024
+  (0.0ms) begin transaction
1025
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:57:07.160624' WHERE "vhosts"."id" = 208889123
1026
+  (0.6ms) commit transaction
1027
+  (0.1ms) begin transaction
1028
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1029
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:57:07', '2012-02-26 13:57:07', 208889123)
1030
+  (0.6ms) commit transaction
1031
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1032
+  (0.1ms) begin transaction
1033
+  (0.7ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:57:07.166278' WHERE "vhosts"."id" = 208889123
1034
+  (1.4ms) commit transaction
1035
+  (0.3ms) begin transaction
1036
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1037
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:57:18', '2012-02-26 13:57:18', 208889123)
1038
+  (3.6ms) commit transaction
1039
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1040
+  (0.1ms) begin transaction
1041
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:57:18.600675' WHERE "vhosts"."id" = 208889123
1042
+  (0.6ms) commit transaction
1043
+  (0.0ms) begin transaction
1044
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1045
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:57:18', '2012-02-26 13:57:18', 208889123)
1046
+  (0.8ms) commit transaction
1047
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1048
+  (0.0ms) begin transaction
1049
+  (0.0ms) rollback transaction
1050
+  (0.0ms) begin transaction
1051
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1052
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:57:18', '2012-02-26 13:57:18', 208889123)
1053
+  (0.8ms) commit transaction
1054
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1055
+  (0.0ms) begin transaction
1056
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:57:18.615205' WHERE "vhosts"."id" = 208889123
1057
+  (0.9ms) commit transaction
1058
+  (0.0ms) begin transaction
1059
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:57:18.617272' WHERE "vhosts"."id" = 208889123
1060
+  (0.7ms) commit transaction
1061
+  (0.0ms) begin transaction
1062
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1063
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:57:18', '2012-02-26 13:57:18', 208889123)
1064
+  (0.8ms) commit transaction
1065
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1066
+  (0.0ms) begin transaction
1067
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:57:18.621403' WHERE "vhosts"."id" = 208889123
1068
+  (0.8ms) commit transaction
1069
+  (0.3ms) begin transaction
1070
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1071
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:58:06', '2012-02-26 13:58:06', 208889123)
1072
+  (3.3ms) commit transaction
1073
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1074
+  (0.1ms) begin transaction
1075
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:58:06.066757' WHERE "vhosts"."id" = 208889123
1076
+  (0.8ms) commit transaction
1077
+  (0.0ms) begin transaction
1078
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1079
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:58:06', '2012-02-26 13:58:06', 208889123)
1080
+  (0.8ms) commit transaction
1081
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1082
+  (0.0ms) begin transaction
1083
+  (0.1ms) rollback transaction
1084
+  (0.1ms) begin transaction
1085
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1086
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:58:06', '2012-02-26 13:58:06', 208889123)
1087
+  (0.7ms) commit transaction
1088
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1089
+  (0.0ms) begin transaction
1090
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:58:06.081727' WHERE "vhosts"."id" = 208889123
1091
+  (0.8ms) commit transaction
1092
+  (0.0ms) begin transaction
1093
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:58:06.083549' WHERE "vhosts"."id" = 208889123
1094
+  (0.8ms) commit transaction
1095
+  (0.0ms) begin transaction
1096
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1097
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:58:06', '2012-02-26 13:58:06', 208889123)
1098
+  (0.8ms) commit transaction
1099
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1100
+  (0.0ms) begin transaction
1101
+  (0.1ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:58:06.087636' WHERE "vhosts"."id" = 208889123
1102
+  (0.7ms) commit transaction
1103
+  (0.3ms) begin transaction
1104
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
1105
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:59:48', '2012-02-26 13:59:48', 208889123)
1106
+  (1.7ms) commit transaction
1107
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1108
+  (0.1ms) begin transaction
1109
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:59:48.279707' WHERE "vhosts"."id" = 208889123
1110
+  (0.6ms) commit transaction
1111
+  (0.1ms) begin transaction
1112
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1113
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:59:48', '2012-02-26 13:59:48', 208889123)
1114
+  (0.6ms) commit transaction
1115
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1116
+  (0.0ms) begin transaction
1117
+  (0.0ms) rollback transaction
1118
+  (0.0ms) begin transaction
1119
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1120
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:59:48', '2012-02-26 13:59:48', 208889123)
1121
+  (0.6ms) commit transaction
1122
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1123
+  (0.0ms) begin transaction
1124
+  (0.3ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:59:48.298450' WHERE "vhosts"."id" = 208889123
1125
+  (0.6ms) commit transaction
1126
+  (0.0ms) begin transaction
1127
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:59:48.300542' WHERE "vhosts"."id" = 208889123
1128
+  (0.5ms) commit transaction
1129
+  (0.0ms) begin transaction
1130
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1131
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:59:48', '2012-02-26 13:59:48', 208889123)
1132
+  (0.6ms) commit transaction
1133
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1134
+  (0.0ms) begin transaction
1135
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:59:48.305759' WHERE "vhosts"."id" = 208889123
1136
+  (0.8ms) commit transaction
1137
+  (0.3ms) begin transaction
1138
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1139
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:59:52', '2012-02-26 13:59:52', 208889123)
1140
+  (2.1ms) commit transaction
1141
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1142
+  (0.0ms) begin transaction
1143
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:59:52.081293' WHERE "vhosts"."id" = 208889123
1144
+  (0.7ms) commit transaction
1145
+  (0.1ms) begin transaction
1146
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
1147
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:59:52', '2012-02-26 13:59:52', 208889123)
1148
+  (0.6ms) commit transaction
1149
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1150
+  (0.0ms) begin transaction
1151
+  (0.0ms) rollback transaction
1152
+  (0.0ms) begin transaction
1153
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1154
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:59:52', '2012-02-26 13:59:52', 208889123)
1155
+  (0.9ms) commit transaction
1156
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1157
+  (0.0ms) begin transaction
1158
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 13:59:52.099437' WHERE "vhosts"."id" = 208889123
1159
+  (0.7ms) commit transaction
1160
+  (0.0ms) begin transaction
1161
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:59:52.101090' WHERE "vhosts"."id" = 208889123
1162
+  (0.6ms) commit transaction
1163
+  (0.0ms) begin transaction
1164
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1165
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 13:59:52', '2012-02-26 13:59:52', 208889123)
1166
+  (0.9ms) commit transaction
1167
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1168
+  (0.0ms) begin transaction
1169
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 13:59:52.105156' WHERE "vhosts"."id" = 208889123
1170
+  (0.8ms) commit transaction
1171
+  (0.3ms) begin transaction
1172
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1173
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:05', '2012-02-26 14:00:05', 208889123)
1174
+  (3.7ms) commit transaction
1175
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1176
+  (0.1ms) begin transaction
1177
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:05.622882' WHERE "vhosts"."id" = 208889123
1178
+  (0.6ms) commit transaction
1179
+  (0.0ms) begin transaction
1180
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1181
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:05', '2012-02-26 14:00:05', 208889123)
1182
+  (0.8ms) commit transaction
1183
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1184
+  (0.0ms) begin transaction
1185
+  (0.0ms) rollback transaction
1186
+  (0.0ms) begin transaction
1187
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1188
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:05', '2012-02-26 14:00:05', 208889123)
1189
+  (0.6ms) commit transaction
1190
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1191
+  (0.0ms) begin transaction
1192
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:00:05.637443' WHERE "vhosts"."id" = 208889123
1193
+  (0.7ms) commit transaction
1194
+  (0.0ms) begin transaction
1195
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:05.639186' WHERE "vhosts"."id" = 208889123
1196
+  (0.7ms) commit transaction
1197
+  (0.0ms) begin transaction
1198
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1199
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:05', '2012-02-26 14:00:05', 208889123)
1200
+  (0.8ms) commit transaction
1201
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1202
+  (0.0ms) begin transaction
1203
+  (0.1ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:05.643255' WHERE "vhosts"."id" = 208889123
1204
+  (0.9ms) commit transaction
1205
+  (0.3ms) begin transaction
1206
+ Fixture Delete (0.5ms) DELETE FROM "vhosts"
1207
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:16', '2012-02-26 14:00:16', 208889123)
1208
+  (2.3ms) commit transaction
1209
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1210
+  (0.0ms) begin transaction
1211
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:16.559114' WHERE "vhosts"."id" = 208889123
1212
+  (0.7ms) commit transaction
1213
+  (0.0ms) begin transaction
1214
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1215
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:16', '2012-02-26 14:00:16', 208889123)
1216
+  (0.5ms) commit transaction
1217
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1218
+  (0.0ms) begin transaction
1219
+  (0.1ms) rollback transaction
1220
+  (0.0ms) begin transaction
1221
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1222
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:16', '2012-02-26 14:00:16', 208889123)
1223
+  (0.8ms) commit transaction
1224
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1225
+  (0.0ms) begin transaction
1226
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:00:16.573958' WHERE "vhosts"."id" = 208889123
1227
+  (0.7ms) commit transaction
1228
+  (0.0ms) begin transaction
1229
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:16.575577' WHERE "vhosts"."id" = 208889123
1230
+  (0.7ms) commit transaction
1231
+  (0.0ms) begin transaction
1232
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1233
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:16', '2012-02-26 14:00:16', 208889123)
1234
+  (0.6ms) commit transaction
1235
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1236
+  (0.1ms) begin transaction
1237
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:16.580118' WHERE "vhosts"."id" = 208889123
1238
+  (1.0ms) commit transaction
1239
+  (0.3ms) begin transaction
1240
+ Fixture Delete (0.6ms) DELETE FROM "vhosts"
1241
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:23', '2012-02-26 14:00:23', 208889123)
1242
+  (2.3ms) commit transaction
1243
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1244
+  (0.0ms) begin transaction
1245
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:23.739626' WHERE "vhosts"."id" = 208889123
1246
+  (0.5ms) commit transaction
1247
+  (0.0ms) begin transaction
1248
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
1249
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:23', '2012-02-26 14:00:23', 208889123)
1250
+  (0.6ms) commit transaction
1251
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1252
+  (0.0ms) begin transaction
1253
+  (0.0ms) rollback transaction
1254
+  (0.0ms) begin transaction
1255
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1256
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:23', '2012-02-26 14:00:23', 208889123)
1257
+  (0.8ms) commit transaction
1258
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1259
+  (0.0ms) begin transaction
1260
+  (0.3ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:00:23.754886' WHERE "vhosts"."id" = 208889123
1261
+  (0.6ms) commit transaction
1262
+  (0.0ms) begin transaction
1263
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:23.757085' WHERE "vhosts"."id" = 208889123
1264
+  (0.9ms) commit transaction
1265
+  (0.0ms) begin transaction
1266
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1267
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:23', '2012-02-26 14:00:23', 208889123)
1268
+  (0.8ms) commit transaction
1269
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1270
+  (0.0ms) begin transaction
1271
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:23.761528' WHERE "vhosts"."id" = 208889123
1272
+  (0.7ms) commit transaction
1273
+  (0.3ms) begin transaction
1274
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1275
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:35', '2012-02-26 14:00:35', 208889123)
1276
+  (2.4ms) commit transaction
1277
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1278
+  (0.1ms) begin transaction
1279
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:35.683056' WHERE "vhosts"."id" = 208889123
1280
+  (0.6ms) commit transaction
1281
+  (0.0ms) begin transaction
1282
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1283
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:35', '2012-02-26 14:00:35', 208889123)
1284
+  (0.6ms) commit transaction
1285
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1286
+  (0.0ms) begin transaction
1287
+  (0.0ms) rollback transaction
1288
+  (0.0ms) begin transaction
1289
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1290
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:35', '2012-02-26 14:00:35', 208889123)
1291
+  (0.8ms) commit transaction
1292
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1293
+  (0.0ms) begin transaction
1294
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:00:35.697050' WHERE "vhosts"."id" = 208889123
1295
+  (0.8ms) commit transaction
1296
+  (0.0ms) begin transaction
1297
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:35.698885' WHERE "vhosts"."id" = 208889123
1298
+  (0.8ms) commit transaction
1299
+  (0.0ms) begin transaction
1300
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1301
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:00:35', '2012-02-26 14:00:35', 208889123)
1302
+  (0.6ms) commit transaction
1303
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1304
+  (0.1ms) begin transaction
1305
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:00:35.703511' WHERE "vhosts"."id" = 208889123
1306
+  (0.9ms) commit transaction
1307
+  (0.3ms) begin transaction
1308
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1309
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:01:31', '2012-02-26 14:01:31', 208889123)
1310
+  (2.3ms) commit transaction
1311
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1312
+  (0.1ms) begin transaction
1313
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:01:31.605438' WHERE "vhosts"."id" = 208889123
1314
+  (0.6ms) commit transaction
1315
+  (0.1ms) begin transaction
1316
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1317
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:01:31', '2012-02-26 14:01:31', 208889123)
1318
+  (0.6ms) commit transaction
1319
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1320
+  (0.0ms) begin transaction
1321
+  (0.0ms) rollback transaction
1322
+  (0.0ms) begin transaction
1323
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1324
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:01:31', '2012-02-26 14:01:31', 208889123)
1325
+  (0.6ms) commit transaction
1326
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1327
+  (0.1ms) begin transaction
1328
+  (1.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:01:31.624302' WHERE "vhosts"."id" = 208889123
1329
+  (0.9ms) commit transaction
1330
+  (0.0ms) begin transaction
1331
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:01:31.627468' WHERE "vhosts"."id" = 208889123
1332
+  (0.9ms) commit transaction
1333
+  (0.0ms) begin transaction
1334
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1335
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:01:31', '2012-02-26 14:01:31', 208889123)
1336
+  (0.6ms) commit transaction
1337
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1338
+  (0.0ms) begin transaction
1339
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:01:31.632533' WHERE "vhosts"."id" = 208889123
1340
+  (0.7ms) commit transaction
1341
+  (0.3ms) begin transaction
1342
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1343
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:04:31', '2012-02-26 14:04:31', 208889123)
1344
+  (1.8ms) commit transaction
1345
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1346
+  (0.1ms) begin transaction
1347
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:04:31.829942' WHERE "vhosts"."id" = 208889123
1348
+  (0.9ms) commit transaction
1349
+  (0.0ms) begin transaction
1350
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1351
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:04:31', '2012-02-26 14:04:31', 208889123)
1352
+  (0.8ms) commit transaction
1353
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1354
+  (0.0ms) begin transaction
1355
+  (0.0ms) rollback transaction
1356
+  (0.0ms) begin transaction
1357
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1358
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:04:31', '2012-02-26 14:04:31', 208889123)
1359
+  (0.8ms) commit transaction
1360
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1361
+  (0.0ms) begin transaction
1362
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:04:31.844192' WHERE "vhosts"."id" = 208889123
1363
+  (0.8ms) commit transaction
1364
+  (0.0ms) begin transaction
1365
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:04:31.845983' WHERE "vhosts"."id" = 208889123
1366
+  (0.7ms) commit transaction
1367
+  (0.0ms) begin transaction
1368
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1369
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:04:31', '2012-02-26 14:04:31', 208889123)
1370
+  (0.8ms) commit transaction
1371
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1372
+  (0.0ms) begin transaction
1373
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:04:31.850316' WHERE "vhosts"."id" = 208889123
1374
+  (0.8ms) commit transaction
1375
+  (0.3ms) begin transaction
1376
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1377
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:04:50', '2012-02-26 14:04:50', 208889123)
1378
+  (3.3ms) commit transaction
1379
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1380
+  (0.0ms) begin transaction
1381
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:04:50.304783' WHERE "vhosts"."id" = 208889123
1382
+  (0.7ms) commit transaction
1383
+  (0.0ms) begin transaction
1384
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1385
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:04:50', '2012-02-26 14:04:50', 208889123)
1386
+  (0.8ms) commit transaction
1387
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1388
+  (0.0ms) begin transaction
1389
+  (0.1ms) rollback transaction
1390
+  (0.0ms) begin transaction
1391
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1392
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:04:50', '2012-02-26 14:04:50', 208889123)
1393
+  (0.9ms) commit transaction
1394
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1395
+  (0.0ms) begin transaction
1396
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:04:50.321155' WHERE "vhosts"."id" = 208889123
1397
+  (0.8ms) commit transaction
1398
+  (0.0ms) begin transaction
1399
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:04:50.322964' WHERE "vhosts"."id" = 208889123
1400
+  (0.9ms) commit transaction
1401
+  (0.0ms) begin transaction
1402
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1403
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:04:50', '2012-02-26 14:04:50', 208889123)
1404
+  (0.9ms) commit transaction
1405
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1406
+  (0.0ms) begin transaction
1407
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:04:50.327646' WHERE "vhosts"."id" = 208889123
1408
+  (0.9ms) commit transaction
1409
+  (0.3ms) begin transaction
1410
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1411
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:19', '2012-02-26 14:07:19', 208889123)
1412
+  (2.3ms) commit transaction
1413
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1414
+  (0.0ms) begin transaction
1415
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:19.941376' WHERE "vhosts"."id" = 208889123
1416
+  (0.9ms) commit transaction
1417
+  (0.1ms) begin transaction
1418
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
1419
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:19', '2012-02-26 14:07:19', 208889123)
1420
+  (0.7ms) commit transaction
1421
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1422
+  (0.0ms) begin transaction
1423
+  (0.0ms) rollback transaction
1424
+  (0.0ms) begin transaction
1425
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1426
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:19', '2012-02-26 14:07:19', 208889123)
1427
+  (1.0ms) commit transaction
1428
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1429
+  (0.0ms) begin transaction
1430
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:07:19.956394' WHERE "vhosts"."id" = 208889123
1431
+  (0.8ms) commit transaction
1432
+  (0.0ms) begin transaction
1433
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:19.958146' WHERE "vhosts"."id" = 208889123
1434
+  (0.9ms) commit transaction
1435
+  (0.0ms) begin transaction
1436
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1437
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:19', '2012-02-26 14:07:19', 208889123)
1438
+  (0.8ms) commit transaction
1439
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1440
+  (0.0ms) begin transaction
1441
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:19.962739' WHERE "vhosts"."id" = 208889123
1442
+  (0.8ms) commit transaction
1443
+  (0.3ms) begin transaction
1444
+ Fixture Delete (0.6ms) DELETE FROM "vhosts"
1445
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:50', '2012-02-26 14:07:50', 208889123)
1446
+  (2.7ms) commit transaction
1447
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1448
+  (0.1ms) begin transaction
1449
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:50.950650' WHERE "vhosts"."id" = 208889123
1450
+  (0.8ms) commit transaction
1451
+  (0.0ms) begin transaction
1452
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1453
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:50', '2012-02-26 14:07:50', 208889123)
1454
+  (0.8ms) commit transaction
1455
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1456
+  (0.0ms) begin transaction
1457
+  (0.0ms) rollback transaction
1458
+  (0.0ms) begin transaction
1459
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1460
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:50', '2012-02-26 14:07:50', 208889123)
1461
+  (0.9ms) commit transaction
1462
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1463
+  (0.0ms) begin transaction
1464
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:07:50.964538' WHERE "vhosts"."id" = 208889123
1465
+  (0.8ms) commit transaction
1466
+  (0.0ms) begin transaction
1467
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:50.966371' WHERE "vhosts"."id" = 208889123
1468
+  (0.8ms) commit transaction
1469
+  (0.0ms) begin transaction
1470
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1471
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:50', '2012-02-26 14:07:50', 208889123)
1472
+  (0.8ms) commit transaction
1473
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1474
+  (0.0ms) begin transaction
1475
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:50.970757' WHERE "vhosts"."id" = 208889123
1476
+  (0.7ms) commit transaction
1477
+  (0.3ms) begin transaction
1478
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1479
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:59', '2012-02-26 14:07:59', 208889123)
1480
+  (2.7ms) commit transaction
1481
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1482
+  (0.1ms) begin transaction
1483
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:59.452575' WHERE "vhosts"."id" = 208889123
1484
+  (0.6ms) commit transaction
1485
+  (0.1ms) begin transaction
1486
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
1487
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:59', '2012-02-26 14:07:59', 208889123)
1488
+  (0.5ms) commit transaction
1489
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1490
+  (0.0ms) begin transaction
1491
+  (0.0ms) rollback transaction
1492
+  (0.1ms) begin transaction
1493
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1494
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:59', '2012-02-26 14:07:59', 208889123)
1495
+  (0.6ms) commit transaction
1496
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1497
+  (0.0ms) begin transaction
1498
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:07:59.469072' WHERE "vhosts"."id" = 208889123
1499
+  (0.5ms) commit transaction
1500
+  (0.0ms) begin transaction
1501
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:59.470874' WHERE "vhosts"."id" = 208889123
1502
+  (0.5ms) commit transaction
1503
+  (0.0ms) begin transaction
1504
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1505
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:07:59', '2012-02-26 14:07:59', 208889123)
1506
+  (0.5ms) commit transaction
1507
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1508
+  (0.0ms) begin transaction
1509
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:07:59.475560' WHERE "vhosts"."id" = 208889123
1510
+  (0.5ms) commit transaction
1511
+  (0.3ms) begin transaction
1512
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1513
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:08:14', '2012-02-26 14:08:14', 208889123)
1514
+  (1.7ms) commit transaction
1515
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1516
+  (0.1ms) begin transaction
1517
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:08:14.160462' WHERE "vhosts"."id" = 208889123
1518
+  (0.8ms) commit transaction
1519
+  (0.0ms) begin transaction
1520
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1521
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:08:14', '2012-02-26 14:08:14', 208889123)
1522
+  (0.8ms) commit transaction
1523
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1524
+  (0.0ms) begin transaction
1525
+  (0.0ms) rollback transaction
1526
+  (0.0ms) begin transaction
1527
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1528
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:08:14', '2012-02-26 14:08:14', 208889123)
1529
+  (0.6ms) commit transaction
1530
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1531
+  (0.1ms) begin transaction
1532
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:08:14.174473' WHERE "vhosts"."id" = 208889123
1533
+  (1.0ms) commit transaction
1534
+  (0.0ms) begin transaction
1535
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:08:14.176610' WHERE "vhosts"."id" = 208889123
1536
+  (0.7ms) commit transaction
1537
+  (0.0ms) begin transaction
1538
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1539
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:08:14', '2012-02-26 14:08:14', 208889123)
1540
+  (0.8ms) commit transaction
1541
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1542
+  (0.0ms) begin transaction
1543
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:08:14.180740' WHERE "vhosts"."id" = 208889123
1544
+  (0.8ms) commit transaction
1545
+  (0.3ms) begin transaction
1546
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1547
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:08:46', '2012-02-26 14:08:46', 208889123)
1548
+  (1.8ms) commit transaction
1549
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1550
+  (0.0ms) begin transaction
1551
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:08:46.479685' WHERE "vhosts"."id" = 208889123
1552
+  (0.8ms) commit transaction
1553
+  (0.0ms) begin transaction
1554
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1555
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:08:46', '2012-02-26 14:08:46', 208889123)
1556
+  (0.9ms) commit transaction
1557
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1558
+  (0.0ms) begin transaction
1559
+  (0.0ms) rollback transaction
1560
+  (0.0ms) begin transaction
1561
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1562
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:08:46', '2012-02-26 14:08:46', 208889123)
1563
+  (0.7ms) commit transaction
1564
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1565
+  (0.0ms) begin transaction
1566
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:08:46.493671' WHERE "vhosts"."id" = 208889123
1567
+  (0.7ms) commit transaction
1568
+  (0.0ms) begin transaction
1569
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:08:46.495369' WHERE "vhosts"."id" = 208889123
1570
+  (0.7ms) commit transaction
1571
+  (0.0ms) begin transaction
1572
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1573
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:08:46', '2012-02-26 14:08:46', 208889123)
1574
+  (0.8ms) commit transaction
1575
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1576
+  (0.3ms) begin transaction
1577
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1578
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:10:41', '2012-02-26 14:10:41', 208889123)
1579
+  (1.9ms) commit transaction
1580
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1581
+  (0.0ms) begin transaction
1582
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:10:41.630894' WHERE "vhosts"."id" = 208889123
1583
+  (0.4ms) rollback transaction
1584
+  (0.0ms) begin transaction
1585
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1586
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:10:41', '2012-02-26 14:10:41', 208889123)
1587
+  (0.9ms) commit transaction
1588
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1589
+  (0.0ms) begin transaction
1590
+  (0.0ms) rollback transaction
1591
+  (0.0ms) begin transaction
1592
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1593
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:10:41', '2012-02-26 14:10:41', 208889123)
1594
+  (0.9ms) commit transaction
1595
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1596
+  (0.0ms) begin transaction
1597
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:10:41.643890' WHERE "vhosts"."id" = 208889123
1598
+  (0.4ms) rollback transaction
1599
+  (0.0ms) begin transaction
1600
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1601
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:10:41', '2012-02-26 14:10:41', 208889123)
1602
+  (0.8ms) commit transaction
1603
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1604
+  (0.3ms) begin transaction
1605
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1606
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:10:54', '2012-02-26 14:10:54', 208889123)
1607
+  (2.9ms) commit transaction
1608
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1609
+  (0.1ms) begin transaction
1610
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:10:54.160736' WHERE "vhosts"."id" = 208889123
1611
+  (0.8ms) commit transaction
1612
+  (0.0ms) begin transaction
1613
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1614
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:10:54', '2012-02-26 14:10:54', 208889123)
1615
+  (1.0ms) commit transaction
1616
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1617
+  (0.0ms) begin transaction
1618
+  (0.0ms) rollback transaction
1619
+  (0.0ms) begin transaction
1620
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1621
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:10:54', '2012-02-26 14:10:54', 208889123)
1622
+  (0.9ms) commit transaction
1623
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1624
+  (0.0ms) begin transaction
1625
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:10:54.174601' WHERE "vhosts"."id" = 208889123
1626
+  (0.8ms) commit transaction
1627
+  (0.0ms) begin transaction
1628
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:10:54.176355' WHERE "vhosts"."id" = 208889123
1629
+  (0.8ms) commit transaction
1630
+  (0.0ms) begin transaction
1631
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1632
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:10:54', '2012-02-26 14:10:54', 208889123)
1633
+  (0.8ms) commit transaction
1634
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1635
+  (0.3ms) begin transaction
1636
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1637
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:11:13', '2012-02-26 14:11:13', 208889123)
1638
+  (2.0ms) commit transaction
1639
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1640
+  (0.0ms) begin transaction
1641
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:11:13.752057' WHERE "vhosts"."id" = 208889123
1642
+  (0.6ms) commit transaction
1643
+  (0.0ms) begin transaction
1644
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1645
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:11:13', '2012-02-26 14:11:13', 208889123)
1646
+  (0.5ms) commit transaction
1647
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1648
+  (0.0ms) begin transaction
1649
+  (0.1ms) rollback transaction
1650
+  (0.0ms) begin transaction
1651
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1652
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:11:13', '2012-02-26 14:11:13', 208889123)
1653
+  (0.8ms) commit transaction
1654
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1655
+  (0.0ms) begin transaction
1656
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:11:13.768751' WHERE "vhosts"."id" = 208889123
1657
+  (0.8ms) commit transaction
1658
+  (0.0ms) begin transaction
1659
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:11:13.770565' WHERE "vhosts"."id" = 208889123
1660
+  (0.8ms) commit transaction
1661
+  (0.0ms) begin transaction
1662
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1663
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:11:13', '2012-02-26 14:11:13', 208889123)
1664
+  (0.8ms) commit transaction
1665
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1666
+  (0.3ms) begin transaction
1667
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1668
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:06', '2012-02-26 14:23:06', 208889123)
1669
+  (1.7ms) commit transaction
1670
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1671
+  (0.0ms) begin transaction
1672
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:23:06.781459' WHERE "vhosts"."id" = 208889123
1673
+  (0.7ms) commit transaction
1674
+  (0.0ms) begin transaction
1675
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1676
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:06', '2012-02-26 14:23:06', 208889123)
1677
+  (1.0ms) commit transaction
1678
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1679
+  (0.0ms) begin transaction
1680
+  (0.0ms) rollback transaction
1681
+  (0.0ms) begin transaction
1682
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1683
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:06', '2012-02-26 14:23:06', 208889123)
1684
+  (0.6ms) commit transaction
1685
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1686
+  (0.0ms) begin transaction
1687
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:23:06.795457' WHERE "vhosts"."id" = 208889123
1688
+  (0.7ms) commit transaction
1689
+  (0.0ms) begin transaction
1690
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:23:06.797230' WHERE "vhosts"."id" = 208889123
1691
+  (0.7ms) commit transaction
1692
+  (0.0ms) begin transaction
1693
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1694
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:06', '2012-02-26 14:23:06', 208889123)
1695
+  (0.7ms) commit transaction
1696
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1697
+  (0.3ms) begin transaction
1698
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1699
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:20', '2012-02-26 14:23:20', 208889123)
1700
+  (1.9ms) commit transaction
1701
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1702
+  (0.1ms) begin transaction
1703
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:23:20.835014' WHERE "vhosts"."id" = 208889123
1704
+  (0.8ms) commit transaction
1705
+  (0.0ms) begin transaction
1706
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1707
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:20', '2012-02-26 14:23:20', 208889123)
1708
+  (0.8ms) commit transaction
1709
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1710
+  (0.0ms) begin transaction
1711
+  (0.0ms) rollback transaction
1712
+  (0.0ms) begin transaction
1713
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1714
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:20', '2012-02-26 14:23:20', 208889123)
1715
+  (0.6ms) commit transaction
1716
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1717
+  (0.0ms) begin transaction
1718
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 14:23:20.848973' WHERE "vhosts"."id" = 208889123
1719
+  (0.7ms) commit transaction
1720
+  (0.0ms) begin transaction
1721
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:23:20.850878' WHERE "vhosts"."id" = 208889123
1722
+  (0.7ms) commit transaction
1723
+  (0.0ms) begin transaction
1724
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1725
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:20', '2012-02-26 14:23:20', 208889123)
1726
+  (0.8ms) commit transaction
1727
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1728
+  (0.3ms) begin transaction
1729
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1730
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:23:48', '2012-02-26 14:23:48', 208889123)
1731
+  (2.3ms) commit transaction
1732
+ Vhost Load (0.4ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1733
+  (0.1ms) begin transaction
1734
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:23:48.283215' WHERE "vhosts"."id" = 208889123
1735
+  (0.6ms) commit transaction
1736
+  (0.3ms) begin transaction
1737
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1738
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:24:14', '2012-02-26 14:24:14', 208889123)
1739
+  (2.0ms) commit transaction
1740
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1741
+  (0.0ms) begin transaction
1742
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:24:14.970086' WHERE "vhosts"."id" = 208889123
1743
+  (0.7ms) commit transaction
1744
+  (0.3ms) begin transaction
1745
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
1746
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:24:24', '2012-02-26 14:24:24', 208889123)
1747
+  (3.2ms) commit transaction
1748
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1749
+  (0.1ms) begin transaction
1750
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:24:24.224188' WHERE "vhosts"."id" = 208889123
1751
+  (0.8ms) commit transaction
1752
+  (0.3ms) begin transaction
1753
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1754
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:24:32', '2012-02-26 14:24:32', 208889123)
1755
+  (3.0ms) commit transaction
1756
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1757
+  (0.1ms) begin transaction
1758
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:24:32.312821' WHERE "vhosts"."id" = 208889123
1759
+  (0.8ms) commit transaction
1760
+  (0.1ms) begin transaction
1761
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1762
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("domains", "created_at", "id", "updated_at", "name") VALUES ('foo.example.com', '2012-02-26 14:26:50', 208889123, '2012-02-26 14:26:50', 'Foo')
1763
+  (0.8ms) commit transaction
1764
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1765
+  (0.0ms) begin transaction
1766
+  (0.2ms) UPDATE "vhosts" SET "updated_at" = '2012-02-26 14:26:50.018598', "domains" = 'bar.example.com' WHERE "vhosts"."id" = 208889123
1767
+  (0.6ms) commit transaction
1768
+  (0.3ms) begin transaction
1769
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1770
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 14:32:32', '2012-02-26 14:32:32', 208889123)
1771
+  (2.3ms) commit transaction
1772
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1773
+  (0.0ms) begin transaction
1774
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 14:32:32.441527' WHERE "vhosts"."id" = 208889123
1775
+  (0.9ms) commit transaction
1776
+  (0.3ms) begin transaction
1777
+ Fixture Delete (0.6ms) DELETE FROM "vhosts"
1778
+ Fixture Insert (0.5ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:01', '2012-02-26 16:06:01', 208889123)
1779
+  (0.6ms) commit transaction
1780
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1781
+  (0.1ms) begin transaction
1782
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:01.217813' WHERE "vhosts"."id" = 208889123
1783
+  (0.7ms) commit transaction
1784
+  (0.0ms) begin transaction
1785
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1786
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:01', '2012-02-26 16:06:01', 208889123)
1787
+  (0.9ms) commit transaction
1788
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1789
+  (0.0ms) begin transaction
1790
+  (0.0ms) rollback transaction
1791
+  (0.0ms) begin transaction
1792
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1793
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:01', '2012-02-26 16:06:01', 208889123)
1794
+  (0.8ms) commit transaction
1795
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1796
+  (0.0ms) begin transaction
1797
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:06:01.235095' WHERE "vhosts"."id" = 208889123
1798
+  (0.7ms) commit transaction
1799
+  (0.0ms) begin transaction
1800
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:01.236920' WHERE "vhosts"."id" = 208889123
1801
+  (0.6ms) commit transaction
1802
+  (0.0ms) begin transaction
1803
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1804
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:01', '2012-02-26 16:06:01', 208889123)
1805
+  (0.8ms) commit transaction
1806
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1807
+  (0.0ms) begin transaction
1808
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:01.240953' WHERE "vhosts"."id" = 208889123
1809
+  (0.7ms) commit transaction
1810
+  (0.3ms) begin transaction
1811
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1812
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:16', '2012-02-26 16:06:16', 208889123)
1813
+  (1.7ms) commit transaction
1814
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1815
+  (0.0ms) begin transaction
1816
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:16.184040' WHERE "vhosts"."id" = 208889123
1817
+  (0.6ms) commit transaction
1818
+  (0.0ms) begin transaction
1819
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1820
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:16', '2012-02-26 16:06:16', 208889123)
1821
+  (0.8ms) commit transaction
1822
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1823
+  (0.0ms) begin transaction
1824
+  (0.0ms) rollback transaction
1825
+  (0.0ms) begin transaction
1826
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1827
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:16', '2012-02-26 16:06:16', 208889123)
1828
+  (0.5ms) commit transaction
1829
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1830
+  (0.0ms) begin transaction
1831
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:06:16.197657' WHERE "vhosts"."id" = 208889123
1832
+  (0.8ms) commit transaction
1833
+  (0.0ms) begin transaction
1834
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:16.199400' WHERE "vhosts"."id" = 208889123
1835
+  (0.8ms) commit transaction
1836
+  (0.0ms) begin transaction
1837
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1838
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:16', '2012-02-26 16:06:16', 208889123)
1839
+  (0.7ms) commit transaction
1840
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1841
+  (0.0ms) begin transaction
1842
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:16.203707' WHERE "vhosts"."id" = 208889123
1843
+  (0.8ms) commit transaction
1844
+  (0.4ms) begin transaction
1845
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1846
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:29', '2012-02-26 16:06:29', 208889123)
1847
+  (2.1ms) commit transaction
1848
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1849
+  (0.1ms) begin transaction
1850
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:29.657971' WHERE "vhosts"."id" = 208889123
1851
+  (0.5ms) commit transaction
1852
+  (0.0ms) begin transaction
1853
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1854
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:29', '2012-02-26 16:06:29', 208889123)
1855
+  (0.6ms) commit transaction
1856
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1857
+  (0.0ms) begin transaction
1858
+  (0.1ms) rollback transaction
1859
+  (0.0ms) begin transaction
1860
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1861
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:29', '2012-02-26 16:06:29', 208889123)
1862
+  (0.8ms) commit transaction
1863
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1864
+  (0.0ms) begin transaction
1865
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:06:29.673293' WHERE "vhosts"."id" = 208889123
1866
+  (0.7ms) commit transaction
1867
+  (0.0ms) begin transaction
1868
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:29.674956' WHERE "vhosts"."id" = 208889123
1869
+  (0.7ms) commit transaction
1870
+  (0.0ms) begin transaction
1871
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1872
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:06:29', '2012-02-26 16:06:29', 208889123)
1873
+  (0.8ms) commit transaction
1874
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1875
+  (0.0ms) begin transaction
1876
+  (0.1ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:06:29.678845' WHERE "vhosts"."id" = 208889123
1877
+  (0.7ms) commit transaction
1878
+  (0.3ms) begin transaction
1879
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1880
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:11:42', '2012-02-26 16:11:42', 208889123)
1881
+  (1.7ms) commit transaction
1882
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1883
+  (0.0ms) begin transaction
1884
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:11:42.327047' WHERE "vhosts"."id" = 208889123
1885
+  (0.9ms) commit transaction
1886
+  (0.0ms) begin transaction
1887
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1888
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:11:42', '2012-02-26 16:11:42', 208889123)
1889
+  (0.8ms) commit transaction
1890
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1891
+  (0.0ms) begin transaction
1892
+  (0.0ms) rollback transaction
1893
+  (0.0ms) begin transaction
1894
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1895
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:11:42', '2012-02-26 16:11:42', 208889123)
1896
+  (0.8ms) commit transaction
1897
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1898
+  (0.1ms) begin transaction
1899
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:11:42.341372' WHERE "vhosts"."id" = 208889123
1900
+  (0.9ms) commit transaction
1901
+  (0.0ms) begin transaction
1902
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:11:42.343598' WHERE "vhosts"."id" = 208889123
1903
+  (0.6ms) commit transaction
1904
+  (0.0ms) begin transaction
1905
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1906
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:11:42', '2012-02-26 16:11:42', 208889123)
1907
+  (0.8ms) commit transaction
1908
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1909
+  (0.0ms) begin transaction
1910
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:11:42.347809' WHERE "vhosts"."id" = 208889123
1911
+  (0.7ms) commit transaction
1912
+  (0.3ms) begin transaction
1913
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1914
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:12:13', '2012-02-26 16:12:13', 208889123)
1915
+  (3.3ms) commit transaction
1916
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1917
+  (0.1ms) begin transaction
1918
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:12:13.836388' WHERE "vhosts"."id" = 208889123
1919
+  (0.6ms) commit transaction
1920
+  (0.1ms) begin transaction
1921
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1922
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:12:13', '2012-02-26 16:12:13', 208889123)
1923
+  (0.6ms) commit transaction
1924
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1925
+  (0.0ms) begin transaction
1926
+  (0.1ms) rollback transaction
1927
+  (0.1ms) begin transaction
1928
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1929
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:12:13', '2012-02-26 16:12:13', 208889123)
1930
+  (0.6ms) commit transaction
1931
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1932
+  (0.0ms) begin transaction
1933
+  (0.3ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:12:13.854032' WHERE "vhosts"."id" = 208889123
1934
+  (0.5ms) commit transaction
1935
+  (0.0ms) begin transaction
1936
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:12:13.855922' WHERE "vhosts"."id" = 208889123
1937
+  (0.5ms) commit transaction
1938
+  (0.0ms) begin transaction
1939
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1940
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:12:13', '2012-02-26 16:12:13', 208889123)
1941
+  (0.5ms) commit transaction
1942
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1943
+  (0.0ms) begin transaction
1944
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:12:13.860519' WHERE "vhosts"."id" = 208889123
1945
+  (0.5ms) commit transaction
1946
+  (0.3ms) begin transaction
1947
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1948
+ Fixture Insert (0.3ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:16:11', '2012-02-26 16:16:11', 208889123)
1949
+  (3.4ms) commit transaction
1950
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1951
+  (0.1ms) begin transaction
1952
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:16:11.058481' WHERE "vhosts"."id" = 208889123
1953
+  (0.5ms) commit transaction
1954
+  (0.0ms) begin transaction
1955
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1956
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:16:11', '2012-02-26 16:16:11', 208889123)
1957
+  (2.5ms) commit transaction
1958
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1959
+  (0.0ms) begin transaction
1960
+  (0.0ms) rollback transaction
1961
+  (0.0ms) begin transaction
1962
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1963
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:16:11', '2012-02-26 16:16:11', 208889123)
1964
+  (0.5ms) commit transaction
1965
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1966
+  (0.0ms) begin transaction
1967
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:16:11.077008' WHERE "vhosts"."id" = 208889123
1968
+  (0.5ms) commit transaction
1969
+  (0.0ms) begin transaction
1970
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:16:11.078651' WHERE "vhosts"."id" = 208889123
1971
+  (0.5ms) commit transaction
1972
+  (0.0ms) begin transaction
1973
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1974
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:16:11', '2012-02-26 16:16:11', 208889123)
1975
+  (0.5ms) commit transaction
1976
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1977
+  (0.0ms) begin transaction
1978
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:16:11.083219' WHERE "vhosts"."id" = 208889123
1979
+  (0.5ms) commit transaction
1980
+  (0.3ms) begin transaction
1981
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1982
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:27:23', '2012-02-26 16:27:23', 208889123)
1983
+  (2.2ms) commit transaction
1984
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1985
+  (0.1ms) begin transaction
1986
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:27:23.650903' WHERE "vhosts"."id" = 208889123
1987
+  (0.8ms) commit transaction
1988
+  (0.0ms) begin transaction
1989
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
1990
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:27:23', '2012-02-26 16:27:23', 208889123)
1991
+  (0.8ms) commit transaction
1992
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
1993
+  (0.0ms) begin transaction
1994
+  (0.0ms) rollback transaction
1995
+  (0.0ms) begin transaction
1996
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
1997
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:27:23', '2012-02-26 16:27:23', 208889123)
1998
+  (0.8ms) commit transaction
1999
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2000
+  (0.0ms) begin transaction
2001
+  (0.4ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:27:23.664994' WHERE "vhosts"."id" = 208889123
2002
+  (0.5ms) commit transaction
2003
+  (0.1ms) begin transaction
2004
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:27:23.667253' WHERE "vhosts"."id" = 208889123
2005
+  (0.6ms) commit transaction
2006
+  (0.0ms) begin transaction
2007
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
2008
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:27:23', '2012-02-26 16:27:23', 208889123)
2009
+  (0.7ms) commit transaction
2010
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2011
+  (0.0ms) begin transaction
2012
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:27:23.671540' WHERE "vhosts"."id" = 208889123
2013
+  (0.7ms) commit transaction
2014
+  (0.2ms) begin transaction
2015
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2016
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:33', '2012-02-26 16:40:33', 208889123)
2017
+  (3.0ms) commit transaction
2018
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2019
+  (0.1ms) begin transaction
2020
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:34.024949' WHERE "vhosts"."id" = 208889123
2021
+  (1.5ms) commit transaction
2022
+  (0.1ms) begin transaction
2023
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2024
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:34', '2012-02-26 16:40:34', 208889123)
2025
+  (0.8ms) commit transaction
2026
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2027
+  (0.0ms) begin transaction
2028
+  (0.1ms) rollback transaction
2029
+  (0.0ms) begin transaction
2030
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2031
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:34', '2012-02-26 16:40:34', 208889123)
2032
+  (0.6ms) commit transaction
2033
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2034
+  (0.0ms) begin transaction
2035
+  (0.3ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:40:34.045357' WHERE "vhosts"."id" = 208889123
2036
+  (0.5ms) commit transaction
2037
+  (0.0ms) begin transaction
2038
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:34.047261' WHERE "vhosts"."id" = 208889123
2039
+  (1.2ms) commit transaction
2040
+  (0.0ms) begin transaction
2041
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2042
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:34', '2012-02-26 16:40:34', 208889123)
2043
+  (0.5ms) commit transaction
2044
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2045
+  (0.0ms) begin transaction
2046
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:34.052968' WHERE "vhosts"."id" = 208889123
2047
+  (0.5ms) commit transaction
2048
+  (0.3ms) begin transaction
2049
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2050
+ Fixture Insert (0.3ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:43', '2012-02-26 16:40:43', 208889123)
2051
+  (2.3ms) commit transaction
2052
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2053
+  (0.0ms) begin transaction
2054
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:43.628923' WHERE "vhosts"."id" = 208889123
2055
+  (0.7ms) commit transaction
2056
+  (0.1ms) begin transaction
2057
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2058
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:43', '2012-02-26 16:40:43', 208889123)
2059
+  (0.7ms) commit transaction
2060
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2061
+  (0.0ms) begin transaction
2062
+  (0.0ms) rollback transaction
2063
+  (0.0ms) begin transaction
2064
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2065
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:43', '2012-02-26 16:40:43', 208889123)
2066
+  (0.8ms) commit transaction
2067
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2068
+  (0.0ms) begin transaction
2069
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:40:43.646340' WHERE "vhosts"."id" = 208889123
2070
+  (0.8ms) commit transaction
2071
+  (0.0ms) begin transaction
2072
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:43.648197' WHERE "vhosts"."id" = 208889123
2073
+  (0.8ms) commit transaction
2074
+  (0.1ms) begin transaction
2075
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2076
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:43', '2012-02-26 16:40:43', 208889123)
2077
+  (0.8ms) commit transaction
2078
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2079
+  (0.0ms) begin transaction
2080
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:43.653385' WHERE "vhosts"."id" = 208889123
2081
+  (0.6ms) commit transaction
2082
+  (0.3ms) begin transaction
2083
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2084
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:53', '2012-02-26 16:40:53', 208889123)
2085
+  (1.6ms) commit transaction
2086
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2087
+  (0.1ms) begin transaction
2088
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:53.327567' WHERE "vhosts"."id" = 208889123
2089
+  (0.6ms) commit transaction
2090
+  (0.1ms) begin transaction
2091
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2092
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:53', '2012-02-26 16:40:53', 208889123)
2093
+  (0.6ms) commit transaction
2094
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2095
+  (0.0ms) begin transaction
2096
+  (0.0ms) rollback transaction
2097
+  (0.1ms) begin transaction
2098
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2099
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:53', '2012-02-26 16:40:53', 208889123)
2100
+  (0.8ms) commit transaction
2101
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2102
+  (0.0ms) begin transaction
2103
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:40:53.343034' WHERE "vhosts"."id" = 208889123
2104
+  (0.7ms) commit transaction
2105
+  (0.0ms) begin transaction
2106
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:53.344729' WHERE "vhosts"."id" = 208889123
2107
+  (0.9ms) commit transaction
2108
+  (0.0ms) begin transaction
2109
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
2110
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:40:53', '2012-02-26 16:40:53', 208889123)
2111
+  (0.6ms) commit transaction
2112
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2113
+  (0.0ms) begin transaction
2114
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:40:53.349111' WHERE "vhosts"."id" = 208889123
2115
+  (0.8ms) commit transaction
2116
+  (0.3ms) begin transaction
2117
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2118
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:41:04', '2012-02-26 16:41:04', 208889123)
2119
+  (2.1ms) commit transaction
2120
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2121
+  (0.1ms) begin transaction
2122
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:41:05.036084' WHERE "vhosts"."id" = 208889123
2123
+  (0.6ms) commit transaction
2124
+  (0.0ms) begin transaction
2125
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2126
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:41:05', '2012-02-26 16:41:05', 208889123)
2127
+  (0.9ms) commit transaction
2128
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2129
+  (0.0ms) begin transaction
2130
+  (0.0ms) rollback transaction
2131
+  (0.0ms) begin transaction
2132
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2133
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:41:05', '2012-02-26 16:41:05', 208889123)
2134
+  (0.6ms) commit transaction
2135
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2136
+  (0.0ms) begin transaction
2137
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:41:05.050732' WHERE "vhosts"."id" = 208889123
2138
+  (0.8ms) commit transaction
2139
+  (0.0ms) begin transaction
2140
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:41:05.052496' WHERE "vhosts"."id" = 208889123
2141
+  (0.8ms) commit transaction
2142
+  (0.0ms) begin transaction
2143
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
2144
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:41:05', '2012-02-26 16:41:05', 208889123)
2145
+  (0.8ms) commit transaction
2146
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2147
+  (0.0ms) begin transaction
2148
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:41:05.056730' WHERE "vhosts"."id" = 208889123
2149
+  (0.8ms) commit transaction
2150
+  (0.4ms) begin transaction
2151
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2152
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:41:12', '2012-02-26 16:41:12', 208889123)
2153
+  (2.7ms) commit transaction
2154
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2155
+  (0.0ms) begin transaction
2156
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:41:12.171217' WHERE "vhosts"."id" = 208889123
2157
+  (0.6ms) commit transaction
2158
+  (0.0ms) begin transaction
2159
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2160
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:41:12', '2012-02-26 16:41:12', 208889123)
2161
+  (0.6ms) commit transaction
2162
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2163
+  (0.0ms) begin transaction
2164
+  (0.0ms) rollback transaction
2165
+  (0.0ms) begin transaction
2166
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2167
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:41:12', '2012-02-26 16:41:12', 208889123)
2168
+  (0.8ms) commit transaction
2169
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2170
+  (0.0ms) begin transaction
2171
+  (0.3ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:41:12.186961' WHERE "vhosts"."id" = 208889123
2172
+  (0.6ms) commit transaction
2173
+  (0.0ms) begin transaction
2174
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:41:12.189124' WHERE "vhosts"."id" = 208889123
2175
+  (0.6ms) commit transaction
2176
+  (0.0ms) begin transaction
2177
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
2178
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:41:12', '2012-02-26 16:41:12', 208889123)
2179
+  (0.8ms) commit transaction
2180
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2181
+  (0.0ms) begin transaction
2182
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:41:12.193323' WHERE "vhosts"."id" = 208889123
2183
+  (0.8ms) commit transaction
2184
+  (0.3ms) begin transaction
2185
+ Fixture Delete (0.4ms) DELETE FROM "vhosts"
2186
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:43:45', '2012-02-26 16:43:45', 208889123)
2187
+  (3.4ms) commit transaction
2188
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2189
+  (0.1ms) begin transaction
2190
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:43:45.983542' WHERE "vhosts"."id" = 208889123
2191
+  (0.6ms) commit transaction
2192
+  (0.1ms) begin transaction
2193
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2194
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:43:45', '2012-02-26 16:43:45', 208889123)
2195
+  (0.5ms) commit transaction
2196
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2197
+  (0.0ms) begin transaction
2198
+  (0.1ms) rollback transaction
2199
+  (0.0ms) begin transaction
2200
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2201
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:43:45', '2012-02-26 16:43:45', 208889123)
2202
+  (0.5ms) commit transaction
2203
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2204
+  (0.0ms) begin transaction
2205
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:43:46.000591' WHERE "vhosts"."id" = 208889123
2206
+  (0.5ms) commit transaction
2207
+  (0.0ms) begin transaction
2208
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:43:46.002305' WHERE "vhosts"."id" = 208889123
2209
+  (0.5ms) commit transaction
2210
+  (0.0ms) begin transaction
2211
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2212
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:43:46', '2012-02-26 16:43:46', 208889123)
2213
+  (0.5ms) commit transaction
2214
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2215
+  (0.0ms) begin transaction
2216
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:43:46.006931' WHERE "vhosts"."id" = 208889123
2217
+  (0.5ms) commit transaction
2218
+  (0.3ms) begin transaction
2219
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2220
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:43:55', '2012-02-26 16:43:55', 208889123)
2221
+  (2.9ms) commit transaction
2222
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2223
+  (0.1ms) begin transaction
2224
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:43:55.902867' WHERE "vhosts"."id" = 208889123
2225
+  (0.5ms) commit transaction
2226
+  (0.0ms) begin transaction
2227
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
2228
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:43:55', '2012-02-26 16:43:55', 208889123)
2229
+  (0.5ms) commit transaction
2230
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2231
+  (0.0ms) begin transaction
2232
+  (0.0ms) rollback transaction
2233
+  (0.0ms) begin transaction
2234
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2235
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:43:55', '2012-02-26 16:43:55', 208889123)
2236
+  (0.7ms) commit transaction
2237
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2238
+  (0.0ms) begin transaction
2239
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:43:55.917041' WHERE "vhosts"."id" = 208889123
2240
+  (0.6ms) commit transaction
2241
+  (0.1ms) begin transaction
2242
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:43:55.919060' WHERE "vhosts"."id" = 208889123
2243
+  (0.8ms) commit transaction
2244
+  (0.0ms) begin transaction
2245
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
2246
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:43:55', '2012-02-26 16:43:55', 208889123)
2247
+  (0.8ms) commit transaction
2248
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2249
+  (0.0ms) begin transaction
2250
+  (0.1ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:43:55.923768' WHERE "vhosts"."id" = 208889123
2251
+  (0.9ms) commit transaction
2252
+  (0.3ms) begin transaction
2253
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2254
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:54:18', '2012-02-26 16:54:18', 208889123)
2255
+  (2.4ms) commit transaction
2256
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2257
+  (0.1ms) begin transaction
2258
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:54:18.036584' WHERE "vhosts"."id" = 208889123
2259
+  (0.6ms) commit transaction
2260
+  (0.1ms) begin transaction
2261
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2262
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:54:18', '2012-02-26 16:54:18', 208889123)
2263
+  (0.9ms) commit transaction
2264
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2265
+  (0.0ms) begin transaction
2266
+  (0.1ms) rollback transaction
2267
+  (0.1ms) begin transaction
2268
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2269
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:54:18', '2012-02-26 16:54:18', 208889123)
2270
+  (0.5ms) commit transaction
2271
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2272
+  (0.0ms) begin transaction
2273
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 16:54:18.056379' WHERE "vhosts"."id" = 208889123
2274
+  (0.5ms) commit transaction
2275
+  (0.0ms) begin transaction
2276
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:54:18.058230' WHERE "vhosts"."id" = 208889123
2277
+  (0.5ms) commit transaction
2278
+  (0.0ms) begin transaction
2279
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2280
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 16:54:18', '2012-02-26 16:54:18', 208889123)
2281
+  (0.6ms) commit transaction
2282
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2283
+  (0.0ms) begin transaction
2284
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 16:54:18.063324' WHERE "vhosts"."id" = 208889123
2285
+  (0.6ms) commit transaction
2286
+  (0.4ms) begin transaction
2287
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2288
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:00:01', '2012-02-26 17:00:01', 208889123)
2289
+  (2.1ms) commit transaction
2290
+ Vhost Load (0.3ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2291
+  (0.1ms) begin transaction
2292
+  (0.5ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:00:01.406983' WHERE "vhosts"."id" = 208889123
2293
+  (0.6ms) commit transaction
2294
+  (0.1ms) begin transaction
2295
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2296
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:00:01', '2012-02-26 17:00:01', 208889123)
2297
+  (0.6ms) commit transaction
2298
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2299
+  (0.0ms) begin transaction
2300
+  (0.0ms) rollback transaction
2301
+  (0.0ms) begin transaction
2302
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2303
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:00:01', '2012-02-26 17:00:01', 208889123)
2304
+  (0.8ms) commit transaction
2305
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2306
+  (0.0ms) begin transaction
2307
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 17:00:01.424046' WHERE "vhosts"."id" = 208889123
2308
+  (0.8ms) commit transaction
2309
+  (0.0ms) begin transaction
2310
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:00:01.425812' WHERE "vhosts"."id" = 208889123
2311
+  (0.9ms) commit transaction
2312
+  (0.4ms) begin transaction
2313
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2314
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:00:47', '2012-02-26 17:00:47', 208889123)
2315
+  (0.7ms) commit transaction
2316
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2317
+  (0.1ms) begin transaction
2318
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:00:47.240835' WHERE "vhosts"."id" = 208889123
2319
+  (0.6ms) commit transaction
2320
+  (0.1ms) begin transaction
2321
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2322
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:00:47', '2012-02-26 17:00:47', 208889123)
2323
+  (0.6ms) commit transaction
2324
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2325
+  (0.0ms) begin transaction
2326
+  (0.0ms) rollback transaction
2327
+  (0.1ms) begin transaction
2328
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2329
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:00:47', '2012-02-26 17:00:47', 208889123)
2330
+  (0.8ms) commit transaction
2331
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2332
+  (0.0ms) begin transaction
2333
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 17:00:47.256798' WHERE "vhosts"."id" = 208889123
2334
+  (0.7ms) commit transaction
2335
+  (0.0ms) begin transaction
2336
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:00:47.258480' WHERE "vhosts"."id" = 208889123
2337
+  (0.7ms) commit transaction
2338
+  (0.0ms) begin transaction
2339
+ Fixture Delete (0.1ms) DELETE FROM "vhosts"
2340
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:00:47', '2012-02-26 17:00:47', 208889123)
2341
+  (0.8ms) commit transaction
2342
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2343
+  (0.0ms) begin transaction
2344
+  (0.1ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:00:47.262522' WHERE "vhosts"."id" = 208889123
2345
+  (0.7ms) commit transaction
2346
+  (0.3ms) begin transaction
2347
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2348
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:40:23', '2012-02-26 17:40:23', 208889123)
2349
+  (0.8ms) commit transaction
2350
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2351
+  (0.1ms) begin transaction
2352
+  (0.3ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:40:24.025053' WHERE "vhosts"."id" = 208889123
2353
+  (0.7ms) commit transaction
2354
+  (0.0ms) begin transaction
2355
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2356
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:40:24', '2012-02-26 17:40:24', 208889123)
2357
+  (0.6ms) commit transaction
2358
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2359
+  (0.0ms) begin transaction
2360
+  (0.0ms) rollback transaction
2361
+  (0.1ms) begin transaction
2362
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2363
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:40:24', '2012-02-26 17:40:24', 208889123)
2364
+  (0.6ms) commit transaction
2365
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2366
+  (0.0ms) begin transaction
2367
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 17:40:24.044703' WHERE "vhosts"."id" = 208889123
2368
+  (0.5ms) commit transaction
2369
+  (0.0ms) begin transaction
2370
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:40:24.046386' WHERE "vhosts"."id" = 208889123
2371
+  (0.5ms) commit transaction
2372
+  (0.0ms) begin transaction
2373
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2374
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:40:24', '2012-02-26 17:40:24', 208889123)
2375
+  (0.5ms) commit transaction
2376
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2377
+  (0.0ms) begin transaction
2378
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:40:24.051485' WHERE "vhosts"."id" = 208889123
2379
+  (0.5ms) commit transaction
2380
+  (0.3ms) begin transaction
2381
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2382
+ Fixture Insert (0.2ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:40:41', '2012-02-26 17:40:41', 208889123)
2383
+  (1.8ms) commit transaction
2384
+ Vhost Load (0.2ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2385
+  (0.1ms) begin transaction
2386
+  (0.4ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:40:41.849178' WHERE "vhosts"."id" = 208889123
2387
+  (0.6ms) commit transaction
2388
+  (0.0ms) begin transaction
2389
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2390
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:40:41', '2012-02-26 17:40:41', 208889123)
2391
+  (0.6ms) commit transaction
2392
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2393
+  (0.0ms) begin transaction
2394
+  (0.1ms) rollback transaction
2395
+  (0.1ms) begin transaction
2396
+ Fixture Delete (0.3ms) DELETE FROM "vhosts"
2397
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:40:41', '2012-02-26 17:40:41', 208889123)
2398
+  (0.8ms) commit transaction
2399
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2400
+  (0.0ms) begin transaction
2401
+  (0.2ms) UPDATE "vhosts" SET "name" = 'bar', "updated_at" = '2012-02-26 17:40:41.867076' WHERE "vhosts"."id" = 208889123
2402
+  (0.8ms) commit transaction
2403
+  (0.0ms) begin transaction
2404
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:40:41.868853' WHERE "vhosts"."id" = 208889123
2405
+  (0.7ms) commit transaction
2406
+  (0.0ms) begin transaction
2407
+ Fixture Delete (0.2ms) DELETE FROM "vhosts"
2408
+ Fixture Insert (0.1ms) INSERT INTO "vhosts" ("name", "domains", "created_at", "updated_at", "id") VALUES ('Foo', 'foo.example.com', '2012-02-26 17:40:41', '2012-02-26 17:40:41', 208889123)
2409
+  (0.8ms) commit transaction
2410
+ Vhost Load (0.1ms) SELECT "vhosts".* FROM "vhosts" WHERE "vhosts"."name" = 'Foo' LIMIT 1
2411
+  (0.0ms) begin transaction
2412
+  (0.2ms) UPDATE "vhosts" SET "domains" = 'bar.example.com', "updated_at" = '2012-02-26 17:40:41.873120' WHERE "vhosts"."id" = 208889123
2413
+  (0.7ms) commit transaction