fast_seeder 0.0.2 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/{README.md → README.markdown} +11 -2
- data/Rakefile +3 -1
- data/lib/fast_seeder/version.rb +1 -1
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/book.rb +2 -0
- data/spec/dummy/app/models/book_without_timestamps.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +53 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +60 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +30 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20120805115707_create_books.rb +11 -0
- data/spec/dummy/db/migrate/20120805151848_create_books_without_timestamps.rb +9 -0
- data/spec/dummy/db/schema.rb +30 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +757 -0
- data/spec/dummy/log/test.log +1226 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/lib/fast_seeder_spec.rb +109 -0
- data/spec/spec_helper.rb +16 -0
- metadata +121 -67
@@ -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,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,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
|
+
[1m[36m (273.8ms)[0m [1mCREATE 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) [0m
|
3
|
+
[1m[35m (957.8ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
4
|
+
[1m[36m (7.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
5
|
+
[1m[35m (2.3ms)[0m 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
|
+
[1m[36m (11.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
16
|
+
[1m[35m (0.5ms)[0m SELECT version FROM "schema_migrations"
|
17
|
+
[1m[36m (1.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805151848')[0m
|
18
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
|
19
|
+
[1m[36m (0.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
20
|
+
Connecting to database specified by database.yml
|
21
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
22
|
+
[1m[35m (1.3ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "books" [0m
|
24
|
+
[1m[35mBook Load (1.5ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
|
25
|
+
[1m[36mBook Load (0.7ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1[0m
|
26
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
27
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
28
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mBook Load (0.6ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1[0m
|
30
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
31
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
32
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mBook Load (0.6ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1[0m
|
34
|
+
[1m[35mBook Load (0.6ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
|
35
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
36
|
+
[1m[35m (0.3ms)[0m BEGIN
|
37
|
+
[1m[36m (0.6ms)[0m [1mINSERT 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')[0m
|
38
|
+
[1m[35mBook Load (0.7ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
|
39
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
40
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO books_without_timestamps (name, published_in, author) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.'), ('The Idiot', '1868', 'Dostoyevsky F.M.')[0m
|
43
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "books_without_timestamps"
|
44
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM "books_without_timestamps" WHERE "books_without_timestamps"."name" = 'The Idiot' AND "books_without_timestamps"."published_in" = 1868[0m
|
45
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM "books_without_timestamps" WHERE "books_without_timestamps"."name" = 'Crime and Punishment' AND "books_without_timestamps"."published_in" = 1866
|
46
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
47
|
+
[1m[35m (0.2ms)[0m BEGIN
|
48
|
+
[1m[36m (0.5ms)[0m [1mINSERT 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')[0m
|
49
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "books"
|
50
|
+
[1m[36mBook Load (0.4ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1[0m
|
51
|
+
[1m[35mBook Load (0.4ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
|
52
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
53
|
+
[1m[35m (0.3ms)[0m BEGIN
|
54
|
+
[1m[36m (0.6ms)[0m [1mINSERT 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')[0m
|
55
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "books"
|
56
|
+
[1m[36mBook Load (0.6ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1[0m
|
57
|
+
[1m[35mBook Load (0.6ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
|
58
|
+
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
59
|
+
[1m[35m (0.3ms)[0m BEGIN
|
60
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
61
|
+
Connecting to database specified by database.yml
|
62
|
+
[1m[36m (45.9ms)[0m [1mCREATE 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[0m
|
63
|
+
[1m[35m (10.9ms)[0m 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
|
+
[1m[36m (10.2ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
65
|
+
[1m[35m (58.1ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
66
|
+
[1m[36m (1.4ms)[0m [1mSELECT version FROM `schema_migrations`[0m
|
67
|
+
[1m[35m (7.5ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120805151848')
|
68
|
+
[1m[36m (17.6ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120805115707')[0m
|
69
|
+
[1m[35m (0.5ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
70
|
+
Connecting to database specified by database.yml
|
71
|
+
[1m[36mSQL (1.1ms)[0m [1mBEGIN[0m
|
72
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `books` [0m
|
74
|
+
[1m[35mBook Load (0.6ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
|
75
|
+
[1m[36mBook Load (0.3ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1[0m
|
76
|
+
[1m[35m (3.3ms)[0m ROLLBACK
|
77
|
+
[1m[36mSQL (0.1ms)[0m [1mBEGIN[0m
|
78
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1[0m
|
80
|
+
[1m[35m (2.6ms)[0m ROLLBACK
|
81
|
+
[1m[36mSQL (0.0ms)[0m [1mBEGIN[0m
|
82
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1[0m
|
84
|
+
[1m[35mBook Load (0.8ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
|
85
|
+
[1m[36m (9.6ms)[0m [1mROLLBACK[0m
|
86
|
+
[1m[35mSQL (0.2ms)[0m BEGIN
|
87
|
+
[1m[36m (0.3ms)[0m [1mINSERT 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')[0m
|
88
|
+
[1m[35mBook Load (0.3ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
|
89
|
+
[1m[36m (2.7ms)[0m [1mROLLBACK[0m
|
90
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO books_without_timestamps (name, published_in, author) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.'), ('The Idiot', '1868', 'Dostoyevsky F.M.')[0m
|
93
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `books_without_timestamps`
|
94
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `books_without_timestamps` WHERE `books_without_timestamps`.`name` = 'The Idiot' AND `books_without_timestamps`.`published_in` = 1868[0m
|
95
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM `books_without_timestamps` WHERE `books_without_timestamps`.`name` = 'Crime and Punishment' AND `books_without_timestamps`.`published_in` = 1866
|
96
|
+
[1m[36m (3.5ms)[0m [1mROLLBACK[0m
|
97
|
+
[1m[35mSQL (0.1ms)[0m BEGIN
|
98
|
+
[1m[36m (0.3ms)[0m [1mINSERT 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')[0m
|
99
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `books`
|
100
|
+
[1m[36mBook Load (0.4ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1[0m
|
101
|
+
[1m[35mBook Load (0.4ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
|
102
|
+
[1m[36m (2.7ms)[0m [1mROLLBACK[0m
|
103
|
+
[1m[35mSQL (0.1ms)[0m BEGIN
|
104
|
+
[1m[36m (0.2ms)[0m [1mINSERT 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')[0m
|
105
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM `books`
|
106
|
+
[1m[36mBook Load (0.3ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1[0m
|
107
|
+
[1m[35mBook Load (0.2ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
|
108
|
+
[1m[36m (2.7ms)[0m [1mROLLBACK[0m
|
109
|
+
[1m[35mSQL (0.1ms)[0m BEGIN
|
110
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
111
|
+
Connecting to database specified by database.yml
|
112
|
+
[1m[36m (3.3ms)[0m [1mDROP TABLE `books`[0m
|
113
|
+
[1m[35m (45.1ms)[0m 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
|
+
[1m[36m (4.0ms)[0m [1mDROP TABLE `books_without_timestamps`[0m
|
115
|
+
[1m[35m (11.9ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT version FROM `schema_migrations`[0m
|
117
|
+
[1m[35m (0.1ms)[0m SELECT `schema_migrations`.`version` FROM `schema_migrations`
|
118
|
+
Connecting to database specified by database.yml
|
119
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
120
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `books` [0m
|
122
|
+
[1m[35mBook Load (0.4ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
|
123
|
+
[1m[36mBook Load (0.5ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1[0m
|
124
|
+
[1m[35m (11.3ms)[0m ROLLBACK
|
125
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
126
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36mBook Load (0.4ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1[0m
|
128
|
+
[1m[35m (3.3ms)[0m ROLLBACK
|
129
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
130
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36mBook Load (0.4ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1[0m
|
132
|
+
[1m[35mBook Load (0.4ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
|
133
|
+
[1m[36m (3.3ms)[0m [1mROLLBACK[0m
|
134
|
+
[1m[35m (0.2ms)[0m BEGIN
|
135
|
+
[1m[36m (0.3ms)[0m [1mINSERT 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')[0m
|
136
|
+
[1m[35mBook Load (0.4ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1
|
137
|
+
[1m[36m (3.2ms)[0m [1mROLLBACK[0m
|
138
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO books_without_timestamps (name, published_in, author) VALUES ('Crime and Punishment', '1866', 'Dostoyevsky F.M.'), ('The Idiot', '1868', 'Dostoyevsky F.M.')[0m
|
141
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `books_without_timestamps`
|
142
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `books_without_timestamps` WHERE `books_without_timestamps`.`name` = 'The Idiot' AND `books_without_timestamps`.`published_in` = 1868[0m
|
143
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM `books_without_timestamps` WHERE `books_without_timestamps`.`name` = 'Crime and Punishment' AND `books_without_timestamps`.`published_in` = 1866
|
144
|
+
[1m[36m (3.3ms)[0m [1mROLLBACK[0m
|
145
|
+
[1m[35m (0.2ms)[0m BEGIN
|
146
|
+
[1m[36m (0.3ms)[0m [1mINSERT 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')[0m
|
147
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `books`
|
148
|
+
[1m[36mBook Load (0.4ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1[0m
|
149
|
+
[1m[35mBook Load (0.4ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
|
150
|
+
[1m[36m (3.3ms)[0m [1mROLLBACK[0m
|
151
|
+
[1m[35m (0.2ms)[0m BEGIN
|
152
|
+
[1m[36m (0.3ms)[0m [1mINSERT 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')[0m
|
153
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `books`
|
154
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT `books`.* FROM `books` WHERE `books`.`name` = 'The Idiot' AND `books`.`published_in` = 1868 LIMIT 1[0m
|
155
|
+
[1m[35mBook Load (0.2ms)[0m SELECT `books`.* FROM `books` WHERE `books`.`name` = 'Crime and Punishment' AND `books`.`published_in` = 1866 LIMIT 1
|
156
|
+
[1m[36m (3.5ms)[0m [1mROLLBACK[0m
|
157
|
+
[1m[35m (0.2ms)[0m BEGIN
|
158
|
+
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
159
|
+
Connecting to database specified by database.yml
|
160
|
+
[1m[36m (0.6ms)[0m [1mselect sqlite_version(*)[0m
|
161
|
+
[1m[35m (70.9ms)[0m 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
|
+
[1m[36m (17.5ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer) [0m
|
163
|
+
[1m[35m (31.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
164
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
165
|
+
[1m[35m (32.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
166
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
167
|
+
[1m[35m (19.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
168
|
+
[1m[36m (14.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
169
|
+
[1m[35m (0.2ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
170
|
+
Connecting to database specified by database.yml
|
171
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
172
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "books" [0m
|
176
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
|
177
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1[0m
|
178
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
179
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
180
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1[0m
|
184
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
185
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
186
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1[0m
|
190
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
|
191
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
192
|
+
[1m[35m (0.0ms)[0m begin transaction
|
193
|
+
[1m[36m (0.1ms)[0m [1mINSERT 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'[0m
|
196
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1
|
197
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
198
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mINSERT 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.'[0m
|
203
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "books_without_timestamps"
|
204
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "books_without_timestamps" WHERE "books_without_timestamps"."name" = 'The Idiot' AND "books_without_timestamps"."published_in" = 1868[0m
|
205
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books_without_timestamps" WHERE "books_without_timestamps"."name" = 'Crime and Punishment' AND "books_without_timestamps"."published_in" = 1866
|
206
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
207
|
+
[1m[35m (0.0ms)[0m begin transaction
|
208
|
+
[1m[36m (0.1ms)[0m [1mINSERT 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'[0m
|
211
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
212
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1[0m
|
213
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
|
214
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
215
|
+
[1m[35m (0.0ms)[0m begin transaction
|
216
|
+
[1m[36m (0.2ms)[0m [1mINSERT 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'[0m
|
219
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books"
|
220
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."name" = 'The Idiot' AND "books"."published_in" = 1868 LIMIT 1[0m
|
221
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."name" = 'Crime and Punishment' AND "books"."published_in" = 1866 LIMIT 1
|
222
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
223
|
+
[1m[35m (0.0ms)[0m begin transaction
|
224
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
225
|
+
[1m[36m (12.9ms)[0m [1mDROP TABLE "books"[0m
|
226
|
+
[1m[35m (85.9ms)[0m 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
|
+
[1m[36m (4.3ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
228
|
+
[1m[35m (35.8ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
229
|
+
[1m[36m (3.7ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
230
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
231
|
+
[1m[36m (5.6ms)[0m [1mDROP TABLE `books`[0m
|
232
|
+
[1m[35m (40.4ms)[0m 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
|
+
[1m[36m (4.3ms)[0m [1mDROP TABLE `books_without_timestamps`[0m
|
234
|
+
[1m[35m (11.2ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mSELECT version FROM `schema_migrations`[0m
|
236
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations`
|
237
|
+
[1m[36m (10.7ms)[0m [1mDROP TABLE `books`[0m
|
238
|
+
[1m[35m (28.0ms)[0m 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
|
+
[1m[36m (4.0ms)[0m [1mDROP TABLE `books_without_timestamps`[0m
|
240
|
+
[1m[35m (11.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM `schema_migrations`[0m
|
242
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations`
|
243
|
+
[1m[36m (61.3ms)[0m [1mDROP TABLE "books"[0m
|
244
|
+
[1m[35m (33.8ms)[0m 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
|
+
[1m[36m (35.5ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
246
|
+
[1m[35m (15.8ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
247
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
248
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
249
|
+
[1m[36m (9.4ms)[0m [1mDROP TABLE "books"[0m
|
250
|
+
[1m[35m (47.8ms)[0m 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
|
+
[1m[36m (2.3ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
252
|
+
[1m[35m (38.1ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
253
|
+
[1m[36m (0.5ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
254
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
255
|
+
[1m[36m (20.5ms)[0m [1mDROP TABLE `books`[0m
|
256
|
+
[1m[35m (23.1ms)[0m 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
|
+
[1m[36m (4.9ms)[0m [1mDROP TABLE `books_without_timestamps`[0m
|
258
|
+
[1m[35m (10.9ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mSELECT version FROM `schema_migrations`[0m
|
260
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations`
|
261
|
+
[1m[36m (54.1ms)[0m [1mDROP TABLE "books"[0m
|
262
|
+
[1m[35m (16.5ms)[0m 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
|
+
[1m[36m (43.4ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
264
|
+
[1m[35m (44.6ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
265
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
266
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
267
|
+
[1m[36m (26.0ms)[0m [1mDROP TABLE "books"[0m
|
268
|
+
[1m[35m (18.6ms)[0m 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
|
+
[1m[36m (25.6ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
270
|
+
[1m[35m (15.2ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
271
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
272
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
273
|
+
[1m[36m (35.4ms)[0m [1mDROP TABLE "books"[0m
|
274
|
+
[1m[35m (463.9ms)[0m 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
|
+
[1m[36m (45.6ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
276
|
+
[1m[35m (16.6ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
277
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
278
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
279
|
+
[1m[36m (44.1ms)[0m [1mDROP TABLE "books"[0m
|
280
|
+
[1m[35m (37.3ms)[0m 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
|
+
[1m[36m (17.1ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
282
|
+
[1m[35m (65.7ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
283
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
284
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
285
|
+
[1m[36m (25.0ms)[0m [1mDROP TABLE "books"[0m
|
286
|
+
[1m[35m (25.7ms)[0m 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
|
+
[1m[36m (28.3ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
288
|
+
[1m[35m (27.6ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
289
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
290
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
291
|
+
[1m[36m (33.9ms)[0m [1mDROP TABLE "books"[0m
|
292
|
+
[1m[35m (20.7ms)[0m 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
|
+
[1m[36m (42.1ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
294
|
+
[1m[35m (17.2ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
295
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
296
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
297
|
+
[1m[36m (45.5ms)[0m [1mDROP TABLE "books"[0m
|
298
|
+
[1m[35m (15.8ms)[0m 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
|
+
[1m[36m (15.7ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
300
|
+
[1m[35m (34.6ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
301
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
302
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
303
|
+
[1m[36m (52.0ms)[0m [1mDROP TABLE "books"[0m
|
304
|
+
[1m[35m (15.3ms)[0m 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
|
+
[1m[36m (38.2ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
306
|
+
[1m[35m (17.4ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
307
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
308
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
309
|
+
[1m[36m (52.6ms)[0m [1mDROP TABLE "books"[0m
|
310
|
+
[1m[35m (17.2ms)[0m 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
|
+
[1m[36m (15.7ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
312
|
+
[1m[35m (28.0ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
313
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
314
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
315
|
+
[1m[36m (82.9ms)[0m [1mCREATE 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) [0m
|
316
|
+
[1m[35m (19.8ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
317
|
+
[1m[36m (12.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
318
|
+
[1m[35m (10.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
319
|
+
[1m[36m (0.6ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
320
|
+
[1m[35m (5.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
321
|
+
[1m[36m (12.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
322
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.6ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
323
|
+
[1m[36m (5.1ms)[0m [1mDROP TABLE "books"[0m
|
324
|
+
[1m[35m (33.1ms)[0m 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
|
+
[1m[36m (3.3ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
326
|
+
[1m[35m (23.0ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
327
|
+
[1m[36m (1.4ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
328
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
329
|
+
[1m[36m (211.3ms)[0m [1mDROP DATABASE IF EXISTS "fast_seeder_test"[0m
|
330
|
+
[1m[35m (516.3ms)[0m CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
|
331
|
+
[1m[36m (5.1ms)[0m [1mDROP TABLE "books"[0m
|
332
|
+
[1m[35m (28.1ms)[0m 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
|
+
[1m[36m (3.3ms)[0m [1mDROP TABLE "books_without_timestamps"[0m
|
334
|
+
[1m[35m (21.7ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
335
|
+
[1m[36m (0.7ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
336
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
337
|
+
[1m[36m (110.7ms)[0m [1mDROP DATABASE IF EXISTS "fast_seeder_test"[0m
|
338
|
+
[1m[35m (429.7ms)[0m CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
|
339
|
+
[1m[36m (24.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
340
|
+
[1m[35m (23.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
341
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
342
|
+
Migrating to CreateBooks (20120805115707)
|
343
|
+
[1m[35m (0.4ms)[0m BEGIN
|
344
|
+
[1m[36m (24.7ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
345
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
346
|
+
[1m[36m (2.0ms)[0m [1mCOMMIT[0m
|
347
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
348
|
+
[1m[35m (0.2ms)[0m BEGIN
|
349
|
+
[1m[36m (40.1ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
350
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
351
|
+
[1m[36m (5.9ms)[0m [1mCOMMIT[0m
|
352
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
353
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
354
|
+
[1m[36m (18.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
355
|
+
[1m[35m (16.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
356
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
357
|
+
Migrating to CreateBooks (20120805115707)
|
358
|
+
[1m[35m (0.4ms)[0m BEGIN
|
359
|
+
[1m[36m (38.1ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
360
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
361
|
+
[1m[36m (9.9ms)[0m [1mCOMMIT[0m
|
362
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
363
|
+
[1m[35m (0.4ms)[0m BEGIN
|
364
|
+
[1m[36m (45.2ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
365
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
366
|
+
[1m[36m (8.2ms)[0m [1mCOMMIT[0m
|
367
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
368
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
369
|
+
[1m[35m (211.1ms)[0m DROP DATABASE IF EXISTS "fast_seeder_test"
|
370
|
+
[1m[36m (868.5ms)[0m [1mCREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'[0m
|
371
|
+
[1m[35mSQL (0.6ms)[0m CREATE EXTENSION IF NOT EXISTS "plpgsql"
|
372
|
+
[1m[36m (59.5ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
373
|
+
[1m[35m (47.2ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
374
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
375
|
+
[1m[35m (11.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
376
|
+
[1m[36m (1.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
377
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
378
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
379
|
+
[1m[36m (4.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
380
|
+
[1m[35m (28.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
381
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
382
|
+
Migrating to CreateBooks (20120805115707)
|
383
|
+
[1m[35m (0.4ms)[0m BEGIN
|
384
|
+
[1m[36m (45.4ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
385
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
386
|
+
[1m[36m (2.2ms)[0m [1mCOMMIT[0m
|
387
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
388
|
+
[1m[35m (0.4ms)[0m BEGIN
|
389
|
+
[1m[36m (18.2ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
390
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
391
|
+
[1m[36m (13.6ms)[0m [1mCOMMIT[0m
|
392
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
393
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
394
|
+
[1m[35m (209.3ms)[0m DROP DATABASE IF EXISTS "fast_seeder_test"
|
395
|
+
[1m[36m (377.8ms)[0m [1mCREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'[0m
|
396
|
+
[1m[35mSQL (0.6ms)[0m CREATE EXTENSION IF NOT EXISTS "plpgsql"
|
397
|
+
[1m[36m (43.4ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
398
|
+
[1m[35m (25.1ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
399
|
+
[1m[36m (10.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
400
|
+
[1m[35m (14.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
401
|
+
[1m[36m (1.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
402
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
403
|
+
[1m[36m (6.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
404
|
+
[1m[36m (845.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
405
|
+
[1m[35m (447.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
406
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
407
|
+
Migrating to CreateBooks (20120805115707)
|
408
|
+
[1m[35m (0.4ms)[0m BEGIN
|
409
|
+
[1m[36m (34.6ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
410
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
411
|
+
[1m[36m (11.4ms)[0m [1mCOMMIT[0m
|
412
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
413
|
+
[1m[35m (0.5ms)[0m BEGIN
|
414
|
+
[1m[36m (20.6ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
415
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
416
|
+
[1m[36m (11.0ms)[0m [1mCOMMIT[0m
|
417
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
418
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
419
|
+
[1m[35m (1212.3ms)[0m DROP DATABASE IF EXISTS "fast_seeder_test"
|
420
|
+
[1m[36m (385.4ms)[0m [1mCREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'[0m
|
421
|
+
[1m[35mSQL (0.6ms)[0m CREATE EXTENSION IF NOT EXISTS "plpgsql"
|
422
|
+
[1m[36m (71.4ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
423
|
+
[1m[35m (39.3ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
424
|
+
[1m[36m (7.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
425
|
+
[1m[35m (10.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
426
|
+
[1m[36m (1.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
427
|
+
[1m[35m (1.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
428
|
+
[1m[36m (5.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
429
|
+
[1m[36m (109.9ms)[0m [1mDROP DATABASE IF EXISTS "fast_seeder_test"[0m
|
430
|
+
[1m[35m (450.8ms)[0m CREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'
|
431
|
+
[1m[36mSQL (0.6ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
432
|
+
[1m[35m (52.2ms)[0m 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
|
+
[1m[36m (48.0ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
434
|
+
[1m[35m (5.2ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
435
|
+
[1m[36m (23.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
436
|
+
[1m[35m (0.9ms)[0m SELECT version FROM "schema_migrations"
|
437
|
+
[1m[36m (1.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805151848')[0m
|
438
|
+
[1m[35m (6.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
|
439
|
+
[1m[36m (6.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
440
|
+
[1m[35m (26.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
441
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
442
|
+
Migrating to CreateBooks (20120805115707)
|
443
|
+
[1m[35m (0.4ms)[0m BEGIN
|
444
|
+
[1m[36m (490.3ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
445
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
446
|
+
[1m[36m (2.1ms)[0m [1mCOMMIT[0m
|
447
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
448
|
+
[1m[35m (0.4ms)[0m BEGIN
|
449
|
+
[1m[36m (35.2ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
450
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
451
|
+
[1m[36m (10.9ms)[0m [1mCOMMIT[0m
|
452
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
453
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
454
|
+
[1m[36m (11.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
455
|
+
[1m[35m (23.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
456
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
457
|
+
Migrating to CreateBooks (20120805115707)
|
458
|
+
[1m[35m (0.4ms)[0m BEGIN
|
459
|
+
[1m[36m (24.7ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
460
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
461
|
+
[1m[36m (2.2ms)[0m [1mCOMMIT[0m
|
462
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
463
|
+
[1m[35m (0.6ms)[0m BEGIN
|
464
|
+
[1m[36m (21.1ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
465
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
466
|
+
[1m[36m (8.3ms)[0m [1mCOMMIT[0m
|
467
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
468
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
469
|
+
[1m[36m (6.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
470
|
+
[1m[35m (29.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
471
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
472
|
+
Migrating to CreateBooks (20120805115707)
|
473
|
+
[1m[35m (0.4ms)[0m BEGIN
|
474
|
+
[1m[36m (24.0ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
475
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
476
|
+
[1m[36m (4.8ms)[0m [1mCOMMIT[0m
|
477
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
478
|
+
[1m[35m (0.4ms)[0m BEGIN
|
479
|
+
[1m[36m (20.5ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
480
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
481
|
+
[1m[36m (10.6ms)[0m [1mCOMMIT[0m
|
482
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
483
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
484
|
+
[1m[36m (6.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
485
|
+
[1m[35m (28.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
486
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
487
|
+
Migrating to CreateBooks (20120805115707)
|
488
|
+
[1m[35m (0.2ms)[0m BEGIN
|
489
|
+
[1m[36m (48.9ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
490
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
491
|
+
[1m[36m (3.4ms)[0m [1mCOMMIT[0m
|
492
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
493
|
+
[1m[35m (0.5ms)[0m BEGIN
|
494
|
+
[1m[36m (27.1ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
495
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
496
|
+
[1m[36m (2.8ms)[0m [1mCOMMIT[0m
|
497
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.6ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
498
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
499
|
+
[1m[36m (7.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
500
|
+
[1m[35m (46.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
501
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
502
|
+
Migrating to CreateBooks (20120805115707)
|
503
|
+
[1m[35m (0.4ms)[0m BEGIN
|
504
|
+
[1m[36m (23.3ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
505
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
506
|
+
[1m[36m (2.6ms)[0m [1mCOMMIT[0m
|
507
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
508
|
+
[1m[35m (0.4ms)[0m BEGIN
|
509
|
+
[1m[36m (20.2ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
510
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
511
|
+
[1m[36m (2.6ms)[0m [1mCOMMIT[0m
|
512
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
513
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
514
|
+
[1m[36m (6.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
515
|
+
[1m[35m (45.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
516
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
517
|
+
Migrating to CreateBooks (20120805115707)
|
518
|
+
[1m[35m (0.4ms)[0m BEGIN
|
519
|
+
[1m[36m (42.7ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
520
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
521
|
+
[1m[36m (2.6ms)[0m [1mCOMMIT[0m
|
522
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
523
|
+
[1m[35m (0.4ms)[0m BEGIN
|
524
|
+
[1m[36m (27.8ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
525
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
526
|
+
[1m[36m (2.6ms)[0m [1mCOMMIT[0m
|
527
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
528
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
529
|
+
[1m[35m (0.4ms)[0m DROP DATABASE IF EXISTS "fast_seeder_test"
|
530
|
+
[1m[36m (574.0ms)[0m [1mCREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'[0m
|
531
|
+
[1m[35mSQL (0.6ms)[0m CREATE EXTENSION IF NOT EXISTS "plpgsql"
|
532
|
+
[1m[36m (61.5ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
533
|
+
[1m[35m (26.4ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
534
|
+
[1m[36m (3.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
535
|
+
[1m[35m (10.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
536
|
+
[1m[36m (1.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
537
|
+
[1m[35m (1.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
538
|
+
[1m[36m (5.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
539
|
+
[1m[36m (6.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
540
|
+
[1m[35m (21.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
541
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
542
|
+
Migrating to CreateBooks (20120805115707)
|
543
|
+
[1m[35m (0.4ms)[0m BEGIN
|
544
|
+
[1m[36m (52.0ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
545
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
546
|
+
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
|
547
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
548
|
+
[1m[35m (0.4ms)[0m BEGIN
|
549
|
+
[1m[36m (27.3ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
550
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
551
|
+
[1m[36m (3.7ms)[0m [1mCOMMIT[0m
|
552
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
553
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
554
|
+
[1m[35m (211.6ms)[0m DROP DATABASE IF EXISTS "fast_seeder_test"
|
555
|
+
[1m[36m (431.5ms)[0m [1mCREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'[0m
|
556
|
+
[1m[35mSQL (0.6ms)[0m CREATE EXTENSION IF NOT EXISTS "plpgsql"
|
557
|
+
[1m[36m (84.8ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
558
|
+
[1m[35m (21.8ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
559
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
560
|
+
[1m[35m (26.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
561
|
+
[1m[36m (0.8ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
562
|
+
[1m[35m (1.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
563
|
+
[1m[36m (5.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
564
|
+
[1m[36m (5.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
565
|
+
[1m[35m (36.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
566
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
567
|
+
Migrating to CreateBooks (20120805115707)
|
568
|
+
[1m[35m (0.4ms)[0m BEGIN
|
569
|
+
[1m[36m (29.6ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
570
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
571
|
+
[1m[36m (7.8ms)[0m [1mCOMMIT[0m
|
572
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
573
|
+
[1m[35m (0.6ms)[0m BEGIN
|
574
|
+
[1m[36m (33.4ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
575
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
576
|
+
[1m[36m (5.8ms)[0m [1mCOMMIT[0m
|
577
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
578
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
579
|
+
[1m[35m (215.8ms)[0m DROP DATABASE IF EXISTS "fast_seeder_test"
|
580
|
+
[1m[36m (514.9ms)[0m [1mCREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'[0m
|
581
|
+
[1m[35mSQL (0.6ms)[0m CREATE EXTENSION IF NOT EXISTS "plpgsql"
|
582
|
+
[1m[36m (44.4ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
583
|
+
[1m[35m (27.3ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
584
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
585
|
+
[1m[35m (14.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
586
|
+
[1m[36m (1.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
587
|
+
[1m[35m (3.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
588
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
589
|
+
[1m[36m (35.6ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
590
|
+
[1m[35m (66.8ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
591
|
+
[1m[36mActiveRecord::SchemaMigration Load (1.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
592
|
+
Migrating to CreateBooks (20120805115707)
|
593
|
+
[1m[35m (12.1ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mBEGIN[0m
|
595
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES (?) [["version", "20120805115707"]]
|
596
|
+
[1m[36m (3.8ms)[0m [1mCOMMIT[0m
|
597
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
598
|
+
[1m[35m (10.4ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mBEGIN[0m
|
600
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES (?) [["version", "20120805151848"]]
|
601
|
+
[1m[36m (2.6ms)[0m [1mCOMMIT[0m
|
602
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations`
|
603
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
604
|
+
[1m[35m (0.6ms)[0m DROP DATABASE IF EXISTS `fast_seeder_test`
|
605
|
+
[1m[36m (0.3ms)[0m [1mCREATE DATABASE `fast_seeder_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`[0m
|
606
|
+
[1m[35m (20.0ms)[0m 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
|
+
[1m[36m (10.6ms)[0m [1mCREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB[0m
|
608
|
+
[1m[35m (11.2ms)[0m CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
|
609
|
+
[1m[36m (35.6ms)[0m [1mCREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) [0m
|
610
|
+
[1m[35m (0.4ms)[0m SELECT version FROM `schema_migrations`
|
611
|
+
[1m[36m (7.6ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120805151848')[0m
|
612
|
+
[1m[35m (3.2ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
|
613
|
+
[1m[36m (14.9ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
614
|
+
[1m[35m (46.6ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
615
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
616
|
+
Migrating to CreateBooks (20120805115707)
|
617
|
+
[1m[35m (12.3ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
619
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120805115707')
|
620
|
+
[1m[36m (8.4ms)[0m [1mCOMMIT[0m
|
621
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
622
|
+
[1m[35m (35.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
624
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120805151848')
|
625
|
+
[1m[36m (3.1ms)[0m [1mCOMMIT[0m
|
626
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations`
|
627
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
628
|
+
[1m[35m (0.4ms)[0m DROP DATABASE IF EXISTS `fast_seeder_test`
|
629
|
+
[1m[36m (0.2ms)[0m [1mCREATE DATABASE `fast_seeder_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`[0m
|
630
|
+
[1m[35m (22.4ms)[0m 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
|
+
[1m[36m (10.7ms)[0m [1mCREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB[0m
|
632
|
+
[1m[35m (11.0ms)[0m CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
|
633
|
+
[1m[36m (40.7ms)[0m [1mCREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) [0m
|
634
|
+
[1m[35m (0.4ms)[0m SELECT version FROM `schema_migrations`
|
635
|
+
[1m[36m (17.4ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120805151848')[0m
|
636
|
+
[1m[35m (3.3ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
|
637
|
+
[1m[36m (52.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
638
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
639
|
+
[1m[36m (31.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
640
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
641
|
+
Migrating to CreateBooks (20120805115707)
|
642
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
643
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20120805115707"]]
|
645
|
+
[1m[35m (47.4ms)[0m commit transaction
|
646
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
647
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
648
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
649
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20120805151848"]]
|
650
|
+
[1m[35m (35.1ms)[0m commit transaction
|
651
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
652
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
653
|
+
[1m[36m (39.4ms)[0m [1mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime, "updated_at" datetime) [0m
|
654
|
+
[1m[35m (44.3ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
655
|
+
[1m[36m (17.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
656
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
657
|
+
[1m[36m (44.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
658
|
+
[1m[35m (0.3ms)[0m SELECT version FROM "schema_migrations"
|
659
|
+
[1m[36m (21.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805151848')[0m
|
660
|
+
[1m[35m (456.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
|
661
|
+
[1m[36m (8.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
662
|
+
[1m[35m (66.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
663
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
664
|
+
Migrating to CreateBooks (20120805115707)
|
665
|
+
[1m[35m (0.4ms)[0m BEGIN
|
666
|
+
[1m[36m (36.4ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
667
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805115707"]]
|
668
|
+
[1m[36m (2.5ms)[0m [1mCOMMIT[0m
|
669
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
670
|
+
[1m[35m (0.4ms)[0m BEGIN
|
671
|
+
[1m[36m (21.9ms)[0m [1mCREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer) [0m
|
672
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120805151848"]]
|
673
|
+
[1m[36m (8.8ms)[0m [1mCOMMIT[0m
|
674
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.8ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
675
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
676
|
+
[1m[35m (208.0ms)[0m DROP DATABASE IF EXISTS "fast_seeder_test"
|
677
|
+
[1m[36m (496.8ms)[0m [1mCREATE DATABASE "fast_seeder_test" ENCODING = 'unicode'[0m
|
678
|
+
[1m[35mSQL (0.6ms)[0m CREATE EXTENSION IF NOT EXISTS "plpgsql"
|
679
|
+
[1m[36m (69.3ms)[0m [1mCREATE TABLE "books" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
680
|
+
[1m[35m (29.3ms)[0m CREATE TABLE "books_without_timestamps" ("id" serial primary key, "author" character varying(255), "name" character varying(255), "published_in" integer)
|
681
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
682
|
+
[1m[35m (10.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
683
|
+
[1m[36m (0.8ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
684
|
+
[1m[35m (6.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805151848')
|
685
|
+
[1m[36m (22.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805115707')[0m
|
686
|
+
[1m[36m (25.3ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
687
|
+
[1m[35m (31.1ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
688
|
+
[1m[36mActiveRecord::SchemaMigration Load (2.0ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
689
|
+
Migrating to CreateBooks (20120805115707)
|
690
|
+
[1m[35m (12.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mBEGIN[0m
|
692
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES (?) [["version", "20120805115707"]]
|
693
|
+
[1m[36m (3.9ms)[0m [1mCOMMIT[0m
|
694
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
695
|
+
[1m[35m (25.0ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mBEGIN[0m
|
697
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES (?) [["version", "20120805151848"]]
|
698
|
+
[1m[36m (2.8ms)[0m [1mCOMMIT[0m
|
699
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations`
|
700
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
701
|
+
[1m[35m (0.6ms)[0m DROP DATABASE IF EXISTS `fast_seeder_test`
|
702
|
+
[1m[36m (0.3ms)[0m [1mCREATE DATABASE `fast_seeder_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`[0m
|
703
|
+
[1m[35m (21.3ms)[0m 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
|
+
[1m[36m (29.9ms)[0m [1mCREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB[0m
|
705
|
+
[1m[35m (11.1ms)[0m CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
|
706
|
+
[1m[36m (42.8ms)[0m [1mCREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) [0m
|
707
|
+
[1m[35m (0.5ms)[0m SELECT version FROM `schema_migrations`
|
708
|
+
[1m[36m (7.4ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120805151848')[0m
|
709
|
+
[1m[35m (2.9ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
|
710
|
+
[1m[36m (15.5ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
711
|
+
[1m[35m (31.0ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
712
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
713
|
+
Migrating to CreateBooks (20120805115707)
|
714
|
+
[1m[35m (16.8ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
716
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120805115707')
|
717
|
+
[1m[36m (7.9ms)[0m [1mCOMMIT[0m
|
718
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
719
|
+
[1m[35m (9.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
721
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20120805151848')
|
722
|
+
[1m[36m (3.0ms)[0m [1mCOMMIT[0m
|
723
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations`
|
724
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
725
|
+
[1m[35m (0.5ms)[0m DROP DATABASE IF EXISTS `fast_seeder_test`
|
726
|
+
[1m[36m (0.3ms)[0m [1mCREATE DATABASE `fast_seeder_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`[0m
|
727
|
+
[1m[35m (29.3ms)[0m 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
|
+
[1m[36m (28.0ms)[0m [1mCREATE TABLE `books_without_timestamps` (`id` int(11) auto_increment PRIMARY KEY, `author` varchar(255), `name` varchar(255), `published_in` int(11)) ENGINE=InnoDB[0m
|
729
|
+
[1m[35m (12.1ms)[0m CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
|
730
|
+
[1m[36m (48.2ms)[0m [1mCREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) [0m
|
731
|
+
[1m[35m (0.3ms)[0m SELECT version FROM `schema_migrations`
|
732
|
+
[1m[36m (7.1ms)[0m [1mINSERT INTO `schema_migrations` (version) VALUES ('20120805151848')[0m
|
733
|
+
[1m[35m (3.1ms)[0m INSERT INTO `schema_migrations` (version) VALUES ('20120805115707')
|
734
|
+
[1m[36m (85.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
735
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
736
|
+
[1m[36m (23.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
737
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
738
|
+
Migrating to CreateBooks (20120805115707)
|
739
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
740
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20120805115707"]]
|
742
|
+
[1m[35m (62.5ms)[0m commit transaction
|
743
|
+
Migrating to CreateBooksWithoutTimestamps (20120805151848)
|
744
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
745
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
746
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20120805151848"]]
|
747
|
+
[1m[35m (49.0ms)[0m commit transaction
|
748
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
749
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
750
|
+
[1m[36m (39.0ms)[0m [1mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer, "created_at" datetime, "updated_at" datetime) [0m
|
751
|
+
[1m[35m (37.4ms)[0m CREATE TABLE "books_without_timestamps" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "name" varchar(255), "published_in" integer)
|
752
|
+
[1m[36m (16.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
753
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
754
|
+
[1m[36m (20.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
755
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
756
|
+
[1m[36m (73.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120805151848')[0m
|
757
|
+
[1m[35m (14.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120805115707')
|