fast_seeder 0.0.2 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/{README.md → README.markdown} +11 -2
  3. data/Rakefile +3 -1
  4. data/lib/fast_seeder/version.rb +1 -1
  5. data/spec/dummy/Rakefile +7 -0
  6. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  7. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  8. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  9. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  10. data/spec/dummy/app/models/book.rb +2 -0
  11. data/spec/dummy/app/models/book_without_timestamps.rb +3 -0
  12. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  13. data/spec/dummy/config.ru +4 -0
  14. data/spec/dummy/config/application.rb +53 -0
  15. data/spec/dummy/config/boot.rb +10 -0
  16. data/spec/dummy/config/database.yml +60 -0
  17. data/spec/dummy/config/environment.rb +5 -0
  18. data/spec/dummy/config/environments/development.rb +30 -0
  19. data/spec/dummy/config/environments/production.rb +80 -0
  20. data/spec/dummy/config/environments/test.rb +36 -0
  21. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  22. data/spec/dummy/config/initializers/inflections.rb +15 -0
  23. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  24. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  25. data/spec/dummy/config/initializers/session_store.rb +8 -0
  26. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  27. data/spec/dummy/config/locales/en.yml +5 -0
  28. data/spec/dummy/config/routes.rb +58 -0
  29. data/spec/dummy/db/development.sqlite3 +0 -0
  30. data/spec/dummy/db/migrate/20120805115707_create_books.rb +11 -0
  31. data/spec/dummy/db/migrate/20120805151848_create_books_without_timestamps.rb +9 -0
  32. data/spec/dummy/db/schema.rb +30 -0
  33. data/spec/dummy/db/test.sqlite3 +0 -0
  34. data/spec/dummy/log/development.log +757 -0
  35. data/spec/dummy/log/test.log +1226 -0
  36. data/spec/dummy/public/404.html +26 -0
  37. data/spec/dummy/public/422.html +26 -0
  38. data/spec/dummy/public/500.html +25 -0
  39. data/spec/dummy/public/favicon.ico +0 -0
  40. data/spec/dummy/script/rails +6 -0
  41. data/spec/lib/fast_seeder_spec.rb +109 -0
  42. data/spec/spec_helper.rb +16 -0
  43. metadata +121 -67
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '1b8198b55408a6822836e3a2f27f58361fca47a8ee60a286781f8914663baf3ac25732be7ba34770d7fec88b5fb628545c35c56c72b5a1c46d3b8606def356f5'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id))(.:format)'
58
+ end
Binary file
@@ -0,0 +1,11 @@
1
+ class CreateBooks < ActiveRecord::Migration
2
+ def change
3
+ create_table :books do |t|
4
+ t.string :author
5
+ t.string :name
6
+ t.integer :published_in
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,9 @@
1
+ class CreateBooksWithoutTimestamps < ActiveRecord::Migration
2
+ def change
3
+ create_table :books_without_timestamps do |t|
4
+ t.string :author
5
+ t.string :name
6
+ t.integer :published_in
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,30 @@
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 that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20120805151848) do
15
+
16
+ create_table "books", force: true do |t|
17
+ t.string "author"
18
+ t.string "name"
19
+ t.integer "published_in"
20
+ t.datetime "created_at"
21
+ t.datetime "updated_at"
22
+ end
23
+
24
+ create_table "books_without_timestamps", force: true do |t|
25
+ t.string "author"
26
+ t.string "name"
27
+ t.integer "published_in"
28
+ end
29
+
30
+ end
Binary file
@@ -0,0 +1,757 @@
1
+ Connecting to database specified by database.yml
2
+  (273.8ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
3
+  (957.8ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
4
+  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
5
+  (2.3ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
6
+ FROM pg_class t
7
+ INNER JOIN pg_index d ON t.oid = d.indrelid
8
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
9
+ WHERE i.relkind = 'i'
10
+ AND d.indisprimary = 'f'
11
+ AND t.relname = 'schema_migrations'
12
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
13
+ ORDER BY i.relname
14
+
15
+  (11.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16
+  (0.5ms) SELECT version FROM "schema_migrations"
17
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
18
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
19
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
20
+ Connecting to database specified by database.yml
21
+  (0.3ms) BEGIN
22
+  (1.3ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2014-05-23 15:12:22.208171', '2014-05-23 15:12:22.208229'), ('The Idiot', '1868', '2014-05-23 15:12:22.213865', '2014-05-23 15:12:22.213892')
23
+  (0.6ms) SELECT COUNT(*) FROM "books" 
24
+ Book Load (1.5ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
25
+ Book Load (0.7ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
26
+  (0.4ms) ROLLBACK
27
+  (0.3ms) BEGIN
28
+  (0.6ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2014-05-23 15:12:22.246281', '2014-05-23 15:12:22.246316'), ('The Idiot', '1868', '2014-05-23 15:12:22.246579', '2014-05-23 15:12:22.246596')
29
+ Book Load (0.6ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
30
+  (0.3ms) ROLLBACK
31
+  (0.3ms) BEGIN
32
+  (0.6ms) INSERT INTO books (name, published_in, author, created_at, updated_at) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.', '2014-05-23 15:12:22.253896', '2014-05-23 15:12:22.253922'), ('The Idiot', '1868', 'Dostoyevsky F.M.', '2014-05-23 15:12:22.254124', '2014-05-23 15:12:22.254140')
33
+ Book Load (0.6ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
34
+ Book Load (0.6ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
35
+  (0.3ms) ROLLBACK
36
+  (0.3ms) BEGIN
37
+  (0.6ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2009-12-31 22:00:00.000000', '2012-06-07 05:15:30.000000'), ('The Idiot', '1868', '2009-12-31 22:00:00.000000', '2012-06-07 05:15:30.000000')
38
+ Book Load (0.7ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
39
+  (0.3ms) ROLLBACK
40
+  (0.3ms) BEGIN
41
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:BookWithoutTimestamps> at /home/blake/dev/my/fast_seeder/spec/dummy/app/models/book_without_timestamps.rb:2)
42
+  (1.0ms) INSERT INTO books_without_timestamps (name, published_in, author) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.'), ('The Idiot', '1868', 'Dostoyevsky F.M.')
43
+  (0.6ms) SELECT COUNT(*) FROM "books_without_timestamps"
44
+  (0.6ms) SELECT COUNT(*) FROM "books_without_timestamps" WHERE "books_without_timestamps"."name" = 'The Idiot' AND "books_without_timestamps"."published_in" = 1868
45
+  (0.6ms) SELECT COUNT(*) FROM "books_without_timestamps" WHERE "books_without_timestamps"."name" = 'Crime and Punishment' AND "books_without_timestamps"."published_in" = 1866
46
+  (0.3ms) ROLLBACK
47
+  (0.2ms) BEGIN
48
+  (0.5ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', 1866, '2014-05-23 15:12:22.289674', '2014-05-23 15:12:22.289703'), ('The Idiot', 1868, '2014-05-23 15:12:22.289881', '2014-05-23 15:12:22.289902')
49
+  (0.4ms) SELECT COUNT(*) FROM "books"
50
+ Book Load (0.4ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
51
+ Book Load (0.4ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
52
+  (0.3ms) ROLLBACK
53
+  (0.3ms) BEGIN
54
+  (0.6ms) INSERT INTO books (name, published_in, author, created_at, updated_at) VALUES ('Crime and Punishment', 1866, 'Dostoyevsky F.M.', '2014-05-23 15:12:22.296724', '2014-05-23 15:12:22.296764'), ('The Idiot', 1868, 'Dostoyevsky F.M.', '2014-05-23 15:12:22.297002', '2014-05-23 15:12:22.297020')
55
+  (0.5ms) SELECT COUNT(*) FROM "books"
56
+ Book Load (0.6ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
57
+ Book Load (0.6ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
58
+  (0.3ms) ROLLBACK
59
+  (0.3ms) BEGIN
60
+  (0.2ms) ROLLBACK
61
+ Connecting to database specified by database.yml
62
+  (45.9ms) CREATE TABLE `books` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
63
+  (10.9ms) CREATE TABLE `books_without_timestamps` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
64
+  (10.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
65
+  (58.1ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
66
+  (1.4ms) SELECT version FROM `schema_migrations`
67
+  (7.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805151848')
68
+  (17.6ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
69
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
70
+ Connecting to database specified by database.yml
71
+ SQL (1.1ms) BEGIN
72
+  (0.4ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2014-05-23 15:12:24', '2014-05-23 15:12:24'), ('The Idiot', '1868', '2014-05-23 15:12:24', '2014-05-23 15:12:24')
73
+  (0.4ms) SELECT COUNT(*) FROM `books` 
74
+ Book Load (0.6ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
75
+ Book Load (0.3ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
76
+  (3.3ms) ROLLBACK
77
+ SQL (0.1ms) BEGIN
78
+  (0.2ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2014-05-23 15:12:24', '2014-05-23 15:12:24'), ('The Idiot', '1868', '2014-05-23 15:12:24', '2014-05-23 15:12:24')
79
+ Book Load (0.2ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
80
+  (2.6ms) ROLLBACK
81
+ SQL (0.0ms) BEGIN
82
+  (0.2ms) INSERT INTO books (name, published_in, author, created_at, updated_at) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.', '2014-05-23 15:12:24', '2014-05-23 15:12:24'), ('The Idiot', '1868', 'Dostoyevsky F.M.', '2014-05-23 15:12:24', '2014-05-23 15:12:24')
83
+ Book Load (0.2ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
84
+ Book Load (0.8ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
85
+  (9.6ms) ROLLBACK
86
+ SQL (0.2ms) BEGIN
87
+  (0.3ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2009-12-31 22:00:00', '2012-06-07 05:15:30'), ('The Idiot', '1868', '2009-12-31 22:00:00', '2012-06-07 05:15:30')
88
+ Book Load (0.3ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
89
+  (2.7ms) ROLLBACK
90
+ SQL (0.1ms) BEGIN
91
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:BookWithoutTimestamps> at /home/blake/dev/my/fast_seeder/spec/dummy/app/models/book_without_timestamps.rb:2)
92
+  (0.3ms) INSERT INTO books_without_timestamps (name, published_in, author) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.'), ('The Idiot', '1868', 'Dostoyevsky F.M.')
93
+  (0.3ms) SELECT COUNT(*) FROM `books_without_timestamps`
94
+  (0.4ms) SELECT COUNT(*) FROM `books_without_timestamps` WHERE `books_without_timestamps`.`name` = 'The Idiot' AND `books_without_timestamps`.`published_in` = 1868
95
+  (0.5ms) SELECT COUNT(*) FROM `books_without_timestamps` WHERE `books_without_timestamps`.`name` = 'Crime and Punishment' AND `books_without_timestamps`.`published_in` = 1866
96
+  (3.5ms) ROLLBACK
97
+ SQL (0.1ms) BEGIN
98
+  (0.3ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', 1866, '2014-05-23 15:12:24', '2014-05-23 15:12:24'), ('The Idiot', 1868, '2014-05-23 15:12:24', '2014-05-23 15:12:24')
99
+  (0.3ms) SELECT COUNT(*) FROM `books`
100
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
101
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
102
+  (2.7ms) ROLLBACK
103
+ SQL (0.1ms) BEGIN
104
+  (0.2ms) INSERT INTO books (name, published_in, author, created_at, updated_at) VALUES ('Crime and Punishment', 1866, 'Dostoyevsky F.M.', '2014-05-23 15:12:24', '2014-05-23 15:12:24'), ('The Idiot', 1868, 'Dostoyevsky F.M.', '2014-05-23 15:12:24', '2014-05-23 15:12:24')
105
+  (0.2ms) SELECT COUNT(*) FROM `books`
106
+ Book Load (0.3ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
107
+ Book Load (0.2ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
108
+  (2.7ms) ROLLBACK
109
+ SQL (0.1ms) BEGIN
110
+  (0.1ms) ROLLBACK
111
+ Connecting to database specified by database.yml
112
+  (3.3ms) DROP TABLE `books`
113
+  (45.1ms) CREATE TABLE `books` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
114
+  (4.0ms) DROP TABLE `books_without_timestamps`
115
+  (11.9ms) CREATE TABLE `books_without_timestamps` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
116
+  (0.3ms) SELECT version FROM `schema_migrations`
117
+  (0.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
118
+ Connecting to database specified by database.yml
119
+  (0.2ms) BEGIN
120
+  (0.4ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2014-05-23 15:12:26', '2014-05-23 15:12:26'), ('The Idiot', '1868', '2014-05-23 15:12:26', '2014-05-23 15:12:26')
121
+  (0.5ms) SELECT COUNT(*) FROM `books` 
122
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
123
+ Book Load (0.5ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
124
+  (11.3ms) ROLLBACK
125
+  (0.2ms) BEGIN
126
+  (0.4ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2014-05-23 15:12:26', '2014-05-23 15:12:26'), ('The Idiot', '1868', '2014-05-23 15:12:26', '2014-05-23 15:12:26')
127
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
128
+  (3.3ms) ROLLBACK
129
+  (0.2ms) BEGIN
130
+  (0.3ms) INSERT INTO books (name, published_in, author, created_at, updated_at) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.', '2014-05-23 15:12:26', '2014-05-23 15:12:26'), ('The Idiot', '1868', 'Dostoyevsky F.M.', '2014-05-23 15:12:26', '2014-05-23 15:12:26')
131
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
132
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
133
+  (3.3ms) ROLLBACK
134
+  (0.2ms) BEGIN
135
+  (0.3ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', '1866', '2009-12-31 22:00:00', '2012-06-07 05:15:30'), ('The Idiot', '1868', '2009-12-31 22:00:00', '2012-06-07 05:15:30')
136
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
137
+  (3.2ms) ROLLBACK
138
+  (0.2ms) BEGIN
139
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:BookWithoutTimestamps> at /home/blake/dev/my/fast_seeder/spec/dummy/app/models/book_without_timestamps.rb:2)
140
+  (0.3ms) INSERT INTO books_without_timestamps (name, published_in, author) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.'), ('The Idiot', '1868', 'Dostoyevsky F.M.')
141
+  (0.3ms) SELECT COUNT(*) FROM `books_without_timestamps`
142
+  (0.3ms) SELECT COUNT(*) FROM `books_without_timestamps` WHERE `books_without_timestamps`.`name` = 'The Idiot' AND `books_without_timestamps`.`published_in` = 1868
143
+  (0.2ms) SELECT COUNT(*) FROM `books_without_timestamps` WHERE `books_without_timestamps`.`name` = 'Crime and Punishment' AND `books_without_timestamps`.`published_in` = 1866
144
+  (3.3ms) ROLLBACK
145
+  (0.2ms) BEGIN
146
+  (0.3ms) INSERT INTO books (name, published_in, created_at, updated_at) VALUES ('Crime and Punishment', 1866, '2014-05-23 15:12:26', '2014-05-23 15:12:26'), ('The Idiot', 1868, '2014-05-23 15:12:26', '2014-05-23 15:12:26')
147
+  (0.3ms) SELECT COUNT(*) FROM `books`
148
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
149
+ Book Load (0.4ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
150
+  (3.3ms) ROLLBACK
151
+  (0.2ms) BEGIN
152
+  (0.3ms) INSERT INTO books (name, published_in, author, created_at, updated_at) VALUES ('Crime and Punishment', 1866, 'Dostoyevsky F.M.', '2014-05-23 15:12:26', '2014-05-23 15:12:26'), ('The Idiot', 1868, 'Dostoyevsky F.M.', '2014-05-23 15:12:26', '2014-05-23 15:12:26')
153
+  (0.3ms) SELECT COUNT(*) FROM `books`
154
+ Book Load (0.2ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
155
+ Book Load (0.2ms) SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
156
+  (3.5ms) ROLLBACK
157
+  (0.2ms) BEGIN
158
+  (0.2ms) ROLLBACK
159
+ Connecting to database specified by database.yml
160
+  (0.6ms) select sqlite_version(*)
161
+  (70.9ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
162
+  (17.5ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer) 
163
+  (31.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
164
+  (0.1ms) PRAGMA index_list("schema_migrations")
165
+  (32.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
166
+  (0.0ms) SELECT version FROM "schema_migrations"
167
+  (19.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
168
+  (14.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
169
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
170
+ Connecting to database specified by database.yml
171
+  (0.6ms) begin transaction
172
+  (0.2ms) INSERT INTO 'books' (name, published_in, created_at, updated_at)
173
+ SELECT 'Crime and Punishment' AS 'name', '1866' AS 'published_in', '2014-05-23 15:12:28.498726' AS 'created_at', '2014-05-23 15:12:28.498761' AS 'updated_at'
174
+ UNION SELECT 'The Idiot', '1868', '2014-05-23 15:12:28.501161', '2014-05-23 15:12:28.501173'
175
+  (0.3ms) SELECT COUNT(*) FROM "books" 
176
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
177
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
178
+  (0.1ms) rollback transaction
179
+  (0.0ms) begin transaction
180
+  (0.2ms) INSERT INTO 'books' (name, published_in, created_at, updated_at)
181
+ SELECT 'Crime and Punishment' AS 'name', '1866' AS 'published_in', '2014-05-23 15:12:28.520596' AS 'created_at', '2014-05-23 15:12:28.520617' AS 'updated_at'
182
+ UNION SELECT 'The Idiot', '1868', '2014-05-23 15:12:28.520760', '2014-05-23 15:12:28.520768'
183
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
184
+  (0.1ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+  (0.1ms) INSERT INTO 'books' (name, published_in, author, created_at, updated_at)
187
+ SELECT 'Crime and Punishment' AS 'name', '1866' AS 'published_in', 'Dostoyevsky F.M.' AS 'author', '2014-05-23 15:12:28.522936' AS 'created_at', '2014-05-23 15:12:28.522946' AS 'updated_at'
188
+ UNION SELECT 'The Idiot', '1868', 'Dostoyevsky F.M.', '2014-05-23 15:12:28.523059', '2014-05-23 15:12:28.523066'
189
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
190
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
191
+  (0.1ms) rollback transaction
192
+  (0.0ms) begin transaction
193
+  (0.1ms) INSERT INTO 'books' (name, published_in, created_at, updated_at)
194
+ SELECT 'Crime and Punishment' AS 'name', '1866' AS 'published_in', '2009-12-31 22:00:00.000000' AS 'created_at', '2012-06-07 05:15:30.000000' AS 'updated_at'
195
+ UNION SELECT 'The Idiot', '1868', '2009-12-31 22:00:00.000000', '2012-06-07 05:15:30.000000'
196
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
197
+  (0.1ms) rollback transaction
198
+  (0.0ms) begin transaction
199
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:BookWithoutTimestamps> at /home/blake/dev/my/fast_seeder/spec/dummy/app/models/book_without_timestamps.rb:2)
200
+  (0.2ms) INSERT INTO 'books_without_timestamps' (name, published_in, author)
201
+ SELECT 'Crime and Punishment' AS 'name', '1866' AS 'published_in', 'Dostoyevsky F.M.' AS 'author'
202
+ UNION SELECT 'The Idiot', '1868', 'Dostoyevsky F.M.'
203
+  (0.0ms) SELECT COUNT(*) FROM "books_without_timestamps"
204
+  (0.1ms) SELECT COUNT(*) FROM "books_without_timestamps" WHERE "books_without_timestamps"."name" = 'The Idiot' AND "books_without_timestamps"."published_in" = 1868
205
+  (0.1ms) SELECT COUNT(*) FROM "books_without_timestamps" WHERE "books_without_timestamps"."name" = 'Crime and Punishment' AND "books_without_timestamps"."published_in" = 1866
206
+  (0.1ms) rollback transaction
207
+  (0.0ms) begin transaction
208
+  (0.1ms) INSERT INTO 'books' (name, published_in, created_at, updated_at)
209
+ SELECT 'Crime and Punishment' AS 'name', 1866 AS 'published_in', '2014-05-23 15:12:28.533662' AS 'created_at', '2014-05-23 15:12:28.533682' AS 'updated_at'
210
+ UNION SELECT 'The Idiot', 1868, '2014-05-23 15:12:28.533827', '2014-05-23 15:12:28.533835'
211
+  (0.1ms) SELECT COUNT(*) FROM "books"
212
+ Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
213
+ Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
214
+  (0.2ms) rollback transaction
215
+  (0.0ms) begin transaction
216
+  (0.2ms) INSERT INTO 'books' (name, published_in, author, created_at, updated_at)
217
+ SELECT 'Crime and Punishment' AS 'name', 1866 AS 'published_in', 'Dostoyevsky F.M.' AS 'author', '2014-05-23 15:12:28.538819' AS 'created_at', '2014-05-23 15:12:28.538844' AS 'updated_at'
218
+ UNION SELECT 'The Idiot', 1868, 'Dostoyevsky F.M.', '2014-05-23 15:12:28.539003', '2014-05-23 15:12:28.539013'
219
+  (0.1ms) SELECT COUNT(*) FROM "books"
220
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
221
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
222
+  (0.1ms) rollback transaction
223
+  (0.0ms) begin transaction
224
+  (0.0ms) rollback transaction
225
+  (12.9ms) DROP TABLE "books"
226
+  (85.9ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
227
+  (4.3ms) DROP TABLE "books_without_timestamps"
228
+  (35.8ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
229
+  (3.7ms) SELECT version FROM "schema_migrations"
230
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
231
+  (5.6ms) DROP TABLE `books`
232
+  (40.4ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
233
+  (4.3ms) DROP TABLE `books_without_timestamps`
234
+  (11.2ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
235
+  (0.9ms) SELECT version FROM `schema_migrations`
236
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT `schema_migrations`.* FROM `schema_migrations`
237
+  (10.7ms) DROP TABLE `books`
238
+  (28.0ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
239
+  (4.0ms) DROP TABLE `books_without_timestamps`
240
+  (11.5ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
241
+  (0.2ms) SELECT version FROM `schema_migrations`
242
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT `schema_migrations`.* FROM `schema_migrations`
243
+  (61.3ms) DROP TABLE "books"
244
+  (33.8ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
245
+  (35.5ms) DROP TABLE "books_without_timestamps"
246
+  (15.8ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
247
+  (0.1ms) SELECT version FROM "schema_migrations"
248
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
249
+  (9.4ms) DROP TABLE "books"
250
+  (47.8ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
251
+  (2.3ms) DROP TABLE "books_without_timestamps"
252
+  (38.1ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
253
+  (0.5ms) SELECT version FROM "schema_migrations"
254
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
255
+  (20.5ms) DROP TABLE `books`
256
+  (23.1ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
257
+  (4.9ms) DROP TABLE `books_without_timestamps`
258
+  (10.9ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
259
+  (1.2ms) SELECT version FROM `schema_migrations`
260
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
261
+  (54.1ms) DROP TABLE "books"
262
+  (16.5ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
263
+  (43.4ms) DROP TABLE "books_without_timestamps"
264
+  (44.6ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
265
+  (0.1ms) SELECT version FROM "schema_migrations"
266
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
267
+  (26.0ms) DROP TABLE "books"
268
+  (18.6ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
269
+  (25.6ms) DROP TABLE "books_without_timestamps"
270
+  (15.2ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
271
+  (0.1ms) SELECT version FROM "schema_migrations"
272
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
273
+  (35.4ms) DROP TABLE "books"
274
+  (463.9ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
275
+  (45.6ms) DROP TABLE "books_without_timestamps"
276
+  (16.6ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
277
+  (0.2ms) SELECT version FROM "schema_migrations"
278
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
279
+  (44.1ms) DROP TABLE "books"
280
+  (37.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
281
+  (17.1ms) DROP TABLE "books_without_timestamps"
282
+  (65.7ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
283
+  (0.1ms) SELECT version FROM "schema_migrations"
284
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
285
+  (25.0ms) DROP TABLE "books"
286
+  (25.7ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
287
+  (28.3ms) DROP TABLE "books_without_timestamps"
288
+  (27.6ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
289
+  (0.1ms) SELECT version FROM "schema_migrations"
290
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
291
+  (33.9ms) DROP TABLE "books"
292
+  (20.7ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
293
+  (42.1ms) DROP TABLE "books_without_timestamps"
294
+  (17.2ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
295
+  (0.1ms) SELECT version FROM "schema_migrations"
296
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
297
+  (45.5ms) DROP TABLE "books"
298
+  (15.8ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
299
+  (15.7ms) DROP TABLE "books_without_timestamps"
300
+  (34.6ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
301
+  (0.1ms) SELECT version FROM "schema_migrations"
302
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
303
+  (52.0ms) DROP TABLE "books"
304
+  (15.3ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
305
+  (38.2ms) DROP TABLE "books_without_timestamps"
306
+  (17.4ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
307
+  (0.1ms) SELECT version FROM "schema_migrations"
308
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
309
+  (52.6ms) DROP TABLE "books"
310
+  (17.2ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
311
+  (15.7ms) DROP TABLE "books_without_timestamps"
312
+  (28.0ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
313
+  (0.1ms) SELECT version FROM "schema_migrations"
314
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
315
+  (82.9ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
316
+  (19.8ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
317
+  (12.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
318
+  (10.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
319
+  (0.6ms) SELECT version FROM "schema_migrations"
320
+  (5.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
321
+  (12.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
322
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
323
+  (5.1ms) DROP TABLE "books"
324
+  (33.1ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
325
+  (3.3ms) DROP TABLE "books_without_timestamps"
326
+  (23.0ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
327
+  (1.4ms) SELECT version FROM "schema_migrations"
328
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
329
+  (211.3ms) DROP DATABASE IF EXISTS "fast_seeder_test"
330
+  (516.3ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
331
+  (5.1ms) DROP TABLE "books"
332
+  (28.1ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
333
+  (3.3ms) DROP TABLE "books_without_timestamps"
334
+  (21.7ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
335
+  (0.7ms) SELECT version FROM "schema_migrations"
336
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
337
+  (110.7ms) DROP DATABASE IF EXISTS "fast_seeder_test"
338
+  (429.7ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
339
+  (24.3ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
340
+  (23.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
341
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
342
+ Migrating to CreateBooks (20120805115707)
343
+  (0.4ms) BEGIN
344
+  (24.7ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
345
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
346
+  (2.0ms) COMMIT
347
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
348
+  (0.2ms) BEGIN
349
+  (40.1ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
350
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
351
+  (5.9ms) COMMIT
352
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
353
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
354
+  (18.3ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
355
+  (16.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
357
+ Migrating to CreateBooks (20120805115707)
358
+  (0.4ms) BEGIN
359
+  (38.1ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
360
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
361
+  (9.9ms) COMMIT
362
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
363
+  (0.4ms) BEGIN
364
+  (45.2ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
365
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
366
+  (8.2ms) COMMIT
367
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
368
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
369
+  (211.1ms) DROP DATABASE IF EXISTS "fast_seeder_test"
370
+  (868.5ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
371
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
372
+  (59.5ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
373
+  (47.2ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
374
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
375
+  (11.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
376
+  (1.0ms) SELECT version FROM "schema_migrations"
377
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
378
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
379
+  (4.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
380
+  (28.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
381
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
382
+ Migrating to CreateBooks (20120805115707)
383
+  (0.4ms) BEGIN
384
+  (45.4ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
385
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
386
+  (2.2ms) COMMIT
387
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
388
+  (0.4ms) BEGIN
389
+  (18.2ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
390
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
391
+  (13.6ms) COMMIT
392
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
393
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
394
+  (209.3ms) DROP DATABASE IF EXISTS "fast_seeder_test"
395
+  (377.8ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
396
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
397
+  (43.4ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
398
+  (25.1ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
399
+  (10.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
400
+  (14.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
401
+  (1.0ms) SELECT version FROM "schema_migrations"
402
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
403
+  (6.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
404
+  (845.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
405
+  (447.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
406
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
407
+ Migrating to CreateBooks (20120805115707)
408
+  (0.4ms) BEGIN
409
+  (34.6ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
410
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
411
+  (11.4ms) COMMIT
412
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
413
+  (0.5ms) BEGIN
414
+  (20.6ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
415
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
416
+  (11.0ms) COMMIT
417
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
418
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
419
+  (1212.3ms) DROP DATABASE IF EXISTS "fast_seeder_test"
420
+  (385.4ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
421
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
422
+  (71.4ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
423
+  (39.3ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
424
+  (7.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
425
+  (10.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
426
+  (1.0ms) SELECT version FROM "schema_migrations"
427
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
428
+  (5.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
429
+  (109.9ms) DROP DATABASE IF EXISTS "fast_seeder_test"
430
+  (450.8ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
431
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
432
+  (52.2ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp)
433
+  (48.0ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
434
+  (5.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
435
+  (23.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
436
+  (0.9ms) SELECT version FROM "schema_migrations"
437
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
438
+  (6.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
439
+  (6.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
440
+  (26.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
441
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
442
+ Migrating to CreateBooks (20120805115707)
443
+  (0.4ms) BEGIN
444
+  (490.3ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
445
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
446
+  (2.1ms) COMMIT
447
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
448
+  (0.4ms) BEGIN
449
+  (35.2ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
450
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
451
+  (10.9ms) COMMIT
452
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
453
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
454
+  (11.5ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
455
+  (23.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
456
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
457
+ Migrating to CreateBooks (20120805115707)
458
+  (0.4ms) BEGIN
459
+  (24.7ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
460
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
461
+  (2.2ms) COMMIT
462
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
463
+  (0.6ms) BEGIN
464
+  (21.1ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
465
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
466
+  (8.3ms) COMMIT
467
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
468
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
469
+  (6.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
470
+  (29.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
471
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
472
+ Migrating to CreateBooks (20120805115707)
473
+  (0.4ms) BEGIN
474
+  (24.0ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
475
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
476
+  (4.8ms) COMMIT
477
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
478
+  (0.4ms) BEGIN
479
+  (20.5ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
480
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
481
+  (10.6ms) COMMIT
482
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
483
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
484
+  (6.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
485
+  (28.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
486
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
487
+ Migrating to CreateBooks (20120805115707)
488
+  (0.2ms) BEGIN
489
+  (48.9ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
490
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
491
+  (3.4ms) COMMIT
492
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
493
+  (0.5ms) BEGIN
494
+  (27.1ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
495
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
496
+  (2.8ms) COMMIT
497
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
498
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
499
+  (7.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
500
+  (46.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
501
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
502
+ Migrating to CreateBooks (20120805115707)
503
+  (0.4ms) BEGIN
504
+  (23.3ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
505
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
506
+  (2.6ms) COMMIT
507
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
508
+  (0.4ms) BEGIN
509
+  (20.2ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
510
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
511
+  (2.6ms) COMMIT
512
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
513
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
514
+  (6.3ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
515
+  (45.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
516
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
517
+ Migrating to CreateBooks (20120805115707)
518
+  (0.4ms) BEGIN
519
+  (42.7ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
520
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
521
+  (2.6ms) COMMIT
522
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
523
+  (0.4ms) BEGIN
524
+  (27.8ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
525
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
526
+  (2.6ms) COMMIT
527
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
528
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
529
+  (0.4ms) DROP DATABASE IF EXISTS "fast_seeder_test"
530
+  (574.0ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
531
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
532
+  (61.5ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
533
+  (26.4ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
534
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
535
+  (10.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
536
+  (1.1ms) SELECT version FROM "schema_migrations"
537
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
538
+  (5.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
539
+  (6.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
540
+  (21.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
541
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
542
+ Migrating to CreateBooks (20120805115707)
543
+  (0.4ms) BEGIN
544
+  (52.0ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
545
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
546
+  (1.4ms) COMMIT
547
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
548
+  (0.4ms) BEGIN
549
+  (27.3ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
550
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
551
+  (3.7ms) COMMIT
552
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
553
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
554
+  (211.6ms) DROP DATABASE IF EXISTS "fast_seeder_test"
555
+  (431.5ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
556
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
557
+  (84.8ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
558
+  (21.8ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
559
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
560
+  (26.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
561
+  (0.8ms) SELECT version FROM "schema_migrations"
562
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
563
+  (5.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
564
+  (5.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
565
+  (36.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
566
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
567
+ Migrating to CreateBooks (20120805115707)
568
+  (0.4ms) BEGIN
569
+  (29.6ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
570
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
571
+  (7.8ms) COMMIT
572
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
573
+  (0.6ms) BEGIN
574
+  (33.4ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
575
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
576
+  (5.8ms) COMMIT
577
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
578
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
579
+  (215.8ms) DROP DATABASE IF EXISTS "fast_seeder_test"
580
+  (514.9ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
581
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
582
+  (44.4ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
583
+  (27.3ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
584
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
585
+  (14.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
586
+  (1.0ms) SELECT version FROM "schema_migrations"
587
+  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
588
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
589
+  (35.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
590
+  (66.8ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
591
+ ActiveRecord::SchemaMigration Load (1.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
592
+ Migrating to CreateBooks (20120805115707)
593
+  (12.1ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
594
+ SQL (0.2ms) BEGIN
595
+ SQL (0.7ms) INSERT INTO `schema_migrations` (`version`) VALUES (?) [["version", "20120805115707"]]
596
+  (3.8ms) COMMIT
597
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
598
+  (10.4ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
599
+ SQL (0.1ms) BEGIN
600
+ SQL (0.3ms) INSERT INTO `schema_migrations` (`version`) VALUES (?) [["version", "20120805151848"]]
601
+  (2.6ms) COMMIT
602
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT `schema_migrations`.* FROM `schema_migrations`
603
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT `schema_migrations`.* FROM `schema_migrations`
604
+  (0.6ms) DROP DATABASE IF EXISTS `fast_seeder_test`
605
+  (0.3ms) CREATE DATABASE `fast_seeder_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
606
+  (20.0ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
607
+  (10.6ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
608
+  (11.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
609
+  (35.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
610
+  (0.4ms) SELECT version FROM `schema_migrations`
611
+  (7.6ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805151848')
612
+  (3.2ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
613
+  (14.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
614
+  (46.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
615
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT `schema_migrations`.* FROM `schema_migrations`
616
+ Migrating to CreateBooks (20120805115707)
617
+  (12.3ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
618
+  (0.2ms) BEGIN
619
+ SQL (0.4ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120805115707')
620
+  (8.4ms) COMMIT
621
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
622
+  (35.4ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
623
+  (0.1ms) BEGIN
624
+ SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120805151848')
625
+  (3.1ms) COMMIT
626
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
627
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
628
+  (0.4ms) DROP DATABASE IF EXISTS `fast_seeder_test`
629
+  (0.2ms) CREATE DATABASE `fast_seeder_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
630
+  (22.4ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
631
+  (10.7ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
632
+  (11.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
633
+  (40.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
634
+  (0.4ms) SELECT version FROM `schema_migrations`
635
+  (17.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805151848')
636
+  (3.3ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
637
+  (52.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
638
+  (0.2ms) select sqlite_version(*)
639
+  (31.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
640
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
641
+ Migrating to CreateBooks (20120805115707)
642
+  (0.1ms) begin transaction
643
+  (0.6ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime, "updated_at" datetime)
644
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20120805115707"]]
645
+  (47.4ms) commit transaction
646
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
647
+  (0.1ms) begin transaction
648
+  (0.5ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
649
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20120805151848"]]
650
+  (35.1ms) commit transaction
651
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
652
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
653
+  (39.4ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime, "updated_at" datetime) 
654
+  (44.3ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
655
+  (17.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
656
+  (0.2ms) select sqlite_version(*)
657
+  (44.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
658
+  (0.3ms) SELECT version FROM "schema_migrations"
659
+  (21.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
660
+  (456.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
661
+  (8.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
662
+  (66.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
663
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
664
+ Migrating to CreateBooks (20120805115707)
665
+  (0.4ms) BEGIN
666
+  (36.4ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
667
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
668
+  (2.5ms) COMMIT
669
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
670
+  (0.4ms) BEGIN
671
+  (21.9ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) 
672
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
673
+  (8.8ms) COMMIT
674
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
675
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
676
+  (208.0ms) DROP DATABASE IF EXISTS "fast_seeder_test"
677
+  (496.8ms) CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
678
+ SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
679
+  (69.3ms) CREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) 
680
+  (29.3ms) CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
681
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
682
+  (10.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
683
+  (0.8ms) SELECT version FROM "schema_migrations"
684
+  (6.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
685
+  (22.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
686
+  (25.3ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
687
+  (31.1ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
688
+ ActiveRecord::SchemaMigration Load (2.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
689
+ Migrating to CreateBooks (20120805115707)
690
+  (12.2ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
691
+ SQL (0.2ms) BEGIN
692
+ SQL (0.6ms) INSERT INTO `schema_migrations` (`version`) VALUES (?) [["version", "20120805115707"]]
693
+  (3.9ms) COMMIT
694
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
695
+  (25.0ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
696
+ SQL (0.2ms) BEGIN
697
+ SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES (?) [["version", "20120805151848"]]
698
+  (2.8ms) COMMIT
699
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations`
700
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
701
+  (0.6ms) DROP DATABASE IF EXISTS `fast_seeder_test`
702
+  (0.3ms) CREATE DATABASE `fast_seeder_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
703
+  (21.3ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
704
+  (29.9ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
705
+  (11.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
706
+  (42.8ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
707
+  (0.5ms) SELECT version FROM `schema_migrations`
708
+  (7.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805151848')
709
+  (2.9ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
710
+  (15.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
711
+  (31.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
712
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT `schema_migrations`.* FROM `schema_migrations`
713
+ Migrating to CreateBooks (20120805115707)
714
+  (16.8ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
715
+  (0.1ms) BEGIN
716
+ SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120805115707')
717
+  (7.9ms) COMMIT
718
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
719
+  (9.7ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
720
+  (0.1ms) BEGIN
721
+ SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120805151848')
722
+  (3.0ms) COMMIT
723
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
724
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
725
+  (0.5ms) DROP DATABASE IF EXISTS `fast_seeder_test`
726
+  (0.3ms) CREATE DATABASE `fast_seeder_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
727
+  (29.3ms) CREATE TABLE `books` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
728
+  (28.0ms) CREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB
729
+  (12.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
730
+  (48.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) 
731
+  (0.3ms) SELECT version FROM `schema_migrations`
732
+  (7.1ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805151848')
733
+  (3.1ms) INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
734
+  (85.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
735
+  (0.2ms) select sqlite_version(*)
736
+  (23.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
737
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
738
+ Migrating to CreateBooks (20120805115707)
739
+  (0.1ms) begin transaction
740
+  (0.4ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime, "updated_at" datetime)
741
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20120805115707"]]
742
+  (62.5ms) commit transaction
743
+ Migrating to CreateBooksWithoutTimestamps (20120805151848)
744
+  (0.1ms) begin transaction
745
+  (0.5ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
746
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20120805151848"]]
747
+  (49.0ms) commit transaction
748
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
749
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
750
+  (39.0ms) CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime, "updated_at" datetime) 
751
+  (37.4ms) CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
752
+  (16.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
753
+  (0.1ms) select sqlite_version(*)
754
+  (20.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
755
+  (0.1ms) SELECT version FROM "schema_migrations"
756
+  (73.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
757
+  (14.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')