rails_polymorphic_select 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +86 -0
  4. data/Rakefile +21 -0
  5. data/lib/rails_polymorphic_select.rb +6 -0
  6. data/lib/rails_polymorphic_select/belongs_to_builder_extension.rb +25 -0
  7. data/lib/rails_polymorphic_select/engine.rb +16 -0
  8. data/lib/rails_polymorphic_select/form_builder.rb +36 -0
  9. data/lib/rails_polymorphic_select/version.rb +3 -0
  10. data/spec/belongs_to_builder_extension_spec.rb +46 -0
  11. data/spec/dummy/README.rdoc +28 -0
  12. data/spec/dummy/Rakefile +6 -0
  13. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  14. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  16. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  17. data/spec/dummy/app/models/animal.rb +5 -0
  18. data/spec/dummy/app/models/planet.rb +5 -0
  19. data/spec/dummy/app/models/plant.rb +3 -0
  20. data/spec/dummy/app/models/star.rb +3 -0
  21. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/spec/dummy/bin/bundle +3 -0
  23. data/spec/dummy/bin/rails +4 -0
  24. data/spec/dummy/bin/rake +4 -0
  25. data/spec/dummy/bin/setup +29 -0
  26. data/spec/dummy/config.ru +4 -0
  27. data/spec/dummy/config/application.rb +32 -0
  28. data/spec/dummy/config/boot.rb +5 -0
  29. data/spec/dummy/config/database.yml +25 -0
  30. data/spec/dummy/config/environment.rb +5 -0
  31. data/spec/dummy/config/environments/development.rb +41 -0
  32. data/spec/dummy/config/environments/production.rb +79 -0
  33. data/spec/dummy/config/environments/test.rb +42 -0
  34. data/spec/dummy/config/initializers/assets.rb +11 -0
  35. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  37. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  38. data/spec/dummy/config/initializers/inflections.rb +16 -0
  39. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  40. data/spec/dummy/config/initializers/session_store.rb +3 -0
  41. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  42. data/spec/dummy/config/locales/en.yml +23 -0
  43. data/spec/dummy/config/routes.rb +56 -0
  44. data/spec/dummy/config/secrets.yml +22 -0
  45. data/spec/dummy/db/development.sqlite3 +0 -0
  46. data/spec/dummy/db/migrate/20150911212009_create_animals.rb +12 -0
  47. data/spec/dummy/db/migrate/20150911212401_create_plants.rb +10 -0
  48. data/spec/dummy/db/migrate/20150912014900_create_stars.rb +8 -0
  49. data/spec/dummy/db/migrate/20150912015008_create_planets.rb +9 -0
  50. data/spec/dummy/db/schema.rb +45 -0
  51. data/spec/dummy/db/test.sqlite3 +0 -0
  52. data/spec/dummy/log/development.log +251 -0
  53. data/spec/dummy/log/test.log +1364 -0
  54. data/spec/dummy/public/404.html +67 -0
  55. data/spec/dummy/public/422.html +67 -0
  56. data/spec/dummy/public/500.html +66 -0
  57. data/spec/dummy/public/favicon.ico +0 -0
  58. data/spec/factories/animals.rb +6 -0
  59. data/spec/factories/planets.rb +6 -0
  60. data/spec/factories/plants.rb +6 -0
  61. data/spec/factories/stars.rb +5 -0
  62. data/spec/form_builder_spec.rb +78 -0
  63. data/spec/rails_helper.rb +58 -0
  64. data/spec/spec_helper.rb +93 -0
  65. metadata +255 -0
@@ -0,0 +1,8 @@
1
+ class CreateStars < ActiveRecord::Migration
2
+ def change
3
+ create_table :stars do |t|
4
+ t.string :name, null: false
5
+ t.timestamps null: false
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,9 @@
1
+ class CreatePlanets < ActiveRecord::Migration
2
+ def change
3
+ create_table :planets do |t|
4
+ t.string :name, null: false
5
+ t.references :stars, null: false
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,45 @@
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: 20150912015008) do
15
+
16
+ create_table "animals", force: :cascade do |t|
17
+ t.string "name", null: false
18
+ t.string "scientific_name", null: false
19
+ t.integer "eats_id"
20
+ t.string "eats_type"
21
+ t.datetime "created_at", null: false
22
+ t.datetime "updated_at", null: false
23
+ end
24
+
25
+ create_table "planets", force: :cascade do |t|
26
+ t.string "name", null: false
27
+ t.integer "stars_id", null: false
28
+ t.datetime "created_at", null: false
29
+ t.datetime "updated_at", null: false
30
+ end
31
+
32
+ create_table "plants", force: :cascade do |t|
33
+ t.string "name", null: false
34
+ t.string "scientific_name", null: false
35
+ t.datetime "created_at", null: false
36
+ t.datetime "updated_at", null: false
37
+ end
38
+
39
+ create_table "stars", force: :cascade do |t|
40
+ t.string "name", null: false
41
+ t.datetime "created_at", null: false
42
+ t.datetime "updated_at", null: false
43
+ end
44
+
45
+ end
@@ -0,0 +1,251 @@
1
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateAnimals (20150911212009)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150911212009"]]
9
+  (0.7ms) commit transaction
10
+ Migrating to CreatePlants (20150911212401)
11
+  (0.1ms) begin transaction
12
+  (0.4ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
13
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150911212401"]]
14
+  (0.8ms) commit transaction
15
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
+  (1.1ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
17
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
18
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
19
+  (0.1ms) select sqlite_version(*)
20
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21
+  (0.1ms) SELECT version FROM "schema_migrations"
22
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
23
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
24
+  (1.4ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
25
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
26
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
27
+  (0.1ms) select sqlite_version(*)
28
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
29
+  (0.1ms) SELECT version FROM "schema_migrations"
30
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
31
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
32
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
33
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
34
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
35
+  (0.1ms) select sqlite_version(*)
36
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
37
+  (0.1ms) SELECT version FROM "schema_migrations"
38
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
39
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
40
+  (1.2ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
41
+  (1.5ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
42
+  (4.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
43
+  (0.3ms) select sqlite_version(*)
44
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
+  (0.1ms) SELECT version FROM "schema_migrations"
46
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
47
+  (8.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
48
+  (1.0ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
49
+  (0.8ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
50
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
51
+  (0.1ms) select sqlite_version(*)
52
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
53
+  (0.1ms) SELECT version FROM "schema_migrations"
54
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
55
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
56
+  (2.0ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
57
+  (1.1ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
58
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
59
+  (0.1ms) select sqlite_version(*)
60
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
61
+  (0.2ms) SELECT version FROM "schema_migrations"
62
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
63
+  (4.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
64
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
65
+  (1.1ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
66
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
67
+  (0.1ms) select sqlite_version(*)
68
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
69
+  (0.1ms) SELECT version FROM "schema_migrations"
70
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
71
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
72
+  (2.0ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
73
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
74
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
75
+  (0.1ms) select sqlite_version(*)
76
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
77
+  (0.1ms) SELECT version FROM "schema_migrations"
78
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
79
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
80
+  (2.2ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
81
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
82
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
83
+  (0.1ms) select sqlite_version(*)
84
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
85
+  (0.1ms) SELECT version FROM "schema_migrations"
86
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
87
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
88
+  (1.5ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
89
+  (2.1ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
90
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
91
+  (0.1ms) select sqlite_version(*)
92
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
93
+  (0.3ms) SELECT version FROM "schema_migrations"
94
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
95
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
96
+  (2.4ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
97
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
98
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
99
+  (0.1ms) select sqlite_version(*)
100
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
101
+  (0.1ms) SELECT version FROM "schema_migrations"
102
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
103
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
104
+  (3.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
105
+  (1.7ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
106
+  (5.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
107
+  (0.3ms) select sqlite_version(*)
108
+  (6.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
109
+  (0.2ms) SELECT version FROM "schema_migrations"
110
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
111
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
112
+  (1.5ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
113
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
114
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
115
+  (0.1ms) select sqlite_version(*)
116
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
117
+  (0.1ms) SELECT version FROM "schema_migrations"
118
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
119
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
120
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
121
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
122
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
123
+  (0.1ms) select sqlite_version(*)
124
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
125
+  (0.2ms) SELECT version FROM "schema_migrations"
126
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
127
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
128
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
129
+  (0.8ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
130
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
131
+  (0.1ms) select sqlite_version(*)
132
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
133
+  (0.1ms) SELECT version FROM "schema_migrations"
134
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
135
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
136
+  (1.3ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
137
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
138
+  (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
139
+  (0.1ms) select sqlite_version(*)
140
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
141
+  (0.2ms) SELECT version FROM "schema_migrations"
142
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
143
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
144
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
145
+  (0.8ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
146
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
147
+  (0.1ms) select sqlite_version(*)
148
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
149
+  (0.1ms) SELECT version FROM "schema_migrations"
150
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
151
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
152
+  (2.1ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
153
+  (1.2ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
154
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
155
+  (0.1ms) select sqlite_version(*)
156
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
157
+  (0.1ms) SELECT version FROM "schema_migrations"
158
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
159
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
160
+  (2.0ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
161
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
162
+  (5.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
163
+  (0.3ms) select sqlite_version(*)
164
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
165
+  (0.1ms) SELECT version FROM "schema_migrations"
166
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
167
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
168
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
169
+ Migrating to CreateStars (20150912014900)
170
+  (0.1ms) begin transaction
171
+  (0.6ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
172
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150912014900"]]
173
+  (0.6ms) commit transaction
174
+ Migrating to CreatePlanets (20150912015008)
175
+  (0.0ms) begin transaction
176
+  (0.3ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
177
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150912015008"]]
178
+  (2.1ms) commit transaction
179
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
180
+  (1.3ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
181
+  (1.3ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
182
+  (0.8ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
183
+  (0.8ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
184
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
185
+  (0.1ms) select sqlite_version(*)
186
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
187
+  (0.1ms) SELECT version FROM "schema_migrations"
188
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
189
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
190
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
191
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
192
+  (2.0ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
193
+  (1.2ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
194
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
195
+  (0.8ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
196
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
197
+  (0.1ms) select sqlite_version(*)
198
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
199
+  (0.2ms) SELECT version FROM "schema_migrations"
200
+  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
201
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
202
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
203
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
204
+  (1.1ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
205
+  (0.9ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
206
+  (1.1ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
207
+  (0.9ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
208
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
209
+  (0.1ms) select sqlite_version(*)
210
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
211
+  (0.2ms) SELECT version FROM "schema_migrations"
212
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
213
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
214
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
215
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
216
+  (1.2ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
217
+  (1.0ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
218
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
219
+  (0.9ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
220
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
221
+  (0.1ms) select sqlite_version(*)
222
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
223
+  (0.1ms) SELECT version FROM "schema_migrations"
224
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
225
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
226
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
227
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
228
+  (1.7ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
229
+  (1.1ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
230
+  (1.6ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
231
+  (2.0ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
232
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
233
+  (0.1ms) select sqlite_version(*)
234
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
235
+  (0.1ms) SELECT version FROM "schema_migrations"
236
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
237
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
238
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
239
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
240
+  (1.7ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
241
+  (2.1ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
242
+  (1.7ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
243
+  (2.1ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
244
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
245
+  (0.1ms) select sqlite_version(*)
246
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
247
+  (0.1ms) SELECT version FROM "schema_migrations"
248
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
249
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
250
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
251
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
@@ -0,0 +1,1364 @@
1
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
+  (1.6ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
3
+  (4.5ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5
+  (0.1ms) select sqlite_version(*)
6
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (0.1ms) SELECT version FROM "schema_migrations"
8
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
9
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+  (1.8ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
13
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
14
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
15
+  (0.1ms) select sqlite_version(*)
16
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17
+  (0.1ms) SELECT version FROM "schema_migrations"
18
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
19
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
20
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
+  (1.5ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
23
+  (0.8ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
24
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
25
+  (0.1ms) select sqlite_version(*)
26
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
27
+  (0.1ms) SELECT version FROM "schema_migrations"
28
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
29
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
30
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
31
+  (0.1ms) begin transaction
32
+  (0.1ms) rollback transaction
33
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
34
+  (1.8ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
35
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
36
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
37
+  (0.1ms) select sqlite_version(*)
38
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
39
+  (0.1ms) SELECT version FROM "schema_migrations"
40
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
41
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
42
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
43
+  (0.1ms) begin transaction
44
+  (0.1ms) SAVEPOINT active_record_1
45
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-11 23:34:08.304744"], ["updated_at", "2015-09-11 23:34:08.304744"]]
46
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47
+  (0.0ms) SAVEPOINT active_record_1
48
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-11 23:34:08.311443"], ["updated_at", "2015-09-11 23:34:08.311443"]]
49
+  (0.0ms) RELEASE SAVEPOINT active_record_1
50
+  (0.0ms) SAVEPOINT active_record_1
51
+ SQL (0.0ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-11 23:34:08.313153"], ["updated_at", "2015-09-11 23:34:08.313153"]]
52
+  (0.0ms) RELEASE SAVEPOINT active_record_1
53
+  (0.9ms) rollback transaction
54
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
55
+  (1.6ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
56
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
57
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
58
+  (0.1ms) select sqlite_version(*)
59
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
60
+  (0.1ms) SELECT version FROM "schema_migrations"
61
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
62
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
63
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
64
+  (0.1ms) begin transaction
65
+  (0.1ms) SAVEPOINT active_record_1
66
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-11 23:34:28.286305"], ["updated_at", "2015-09-11 23:34:28.286305"]]
67
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68
+  (0.0ms) SAVEPOINT active_record_1
69
+ SQL (0.2ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-11 23:34:28.290615"], ["updated_at", "2015-09-11 23:34:28.290615"]]
70
+  (0.0ms) RELEASE SAVEPOINT active_record_1
71
+  (0.0ms) SAVEPOINT active_record_1
72
+ SQL (0.0ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-11 23:34:28.292025"], ["updated_at", "2015-09-11 23:34:28.292025"]]
73
+  (0.1ms) RELEASE SAVEPOINT active_record_1
74
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
75
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
76
+  (0.7ms) rollback transaction
77
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
78
+  (1.6ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
79
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
80
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
81
+  (0.1ms) select sqlite_version(*)
82
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
83
+  (0.1ms) SELECT version FROM "schema_migrations"
84
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
85
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
86
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
87
+  (0.1ms) begin transaction
88
+  (0.2ms) SAVEPOINT active_record_1
89
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-11 23:35:01.647790"], ["updated_at", "2015-09-11 23:35:01.647790"]]
90
+  (0.0ms) RELEASE SAVEPOINT active_record_1
91
+  (0.1ms) SAVEPOINT active_record_1
92
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-11 23:35:01.653983"], ["updated_at", "2015-09-11 23:35:01.653983"]]
93
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94
+  (0.0ms) SAVEPOINT active_record_1
95
+ SQL (0.1ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-11 23:35:01.656008"], ["updated_at", "2015-09-11 23:35:01.656008"]]
96
+  (0.1ms) RELEASE SAVEPOINT active_record_1
97
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
98
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
99
+  (0.8ms) rollback transaction
100
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
101
+  (1.1ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
102
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
103
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
104
+  (0.1ms) select sqlite_version(*)
105
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
106
+  (0.1ms) SELECT version FROM "schema_migrations"
107
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
108
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
109
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
110
+  (0.1ms) begin transaction
111
+  (0.1ms) SAVEPOINT active_record_1
112
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-11 23:36:08.437578"], ["updated_at", "2015-09-11 23:36:08.437578"]]
113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
114
+  (0.0ms) SAVEPOINT active_record_1
115
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-11 23:36:08.442041"], ["updated_at", "2015-09-11 23:36:08.442041"]]
116
+  (0.1ms) RELEASE SAVEPOINT active_record_1
117
+  (0.0ms) SAVEPOINT active_record_1
118
+ SQL (0.1ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-11 23:36:08.443897"], ["updated_at", "2015-09-11 23:36:08.443897"]]
119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
120
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
121
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
122
+  (5.8ms) rollback transaction
123
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
124
+  (5.2ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
125
+  (1.1ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
126
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
127
+  (0.1ms) select sqlite_version(*)
128
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
129
+  (0.1ms) SELECT version FROM "schema_migrations"
130
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
131
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
132
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
133
+  (0.2ms) begin transaction
134
+  (0.1ms) SAVEPOINT active_record_1
135
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:29:08.999230"], ["updated_at", "2015-09-12 01:29:08.999230"]]
136
+  (0.1ms) RELEASE SAVEPOINT active_record_1
137
+  (0.1ms) SAVEPOINT active_record_1
138
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:29:09.006725"], ["updated_at", "2015-09-12 01:29:09.006725"]]
139
+  (0.1ms) RELEASE SAVEPOINT active_record_1
140
+  (0.1ms) SAVEPOINT active_record_1
141
+ SQL (0.1ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:29:09.009559"], ["updated_at", "2015-09-12 01:29:09.009559"]]
142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
143
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
144
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
145
+  (0.7ms) rollback transaction
146
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
147
+  (2.2ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
148
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
149
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
150
+  (0.1ms) select sqlite_version(*)
151
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
152
+  (0.1ms) SELECT version FROM "schema_migrations"
153
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
154
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
155
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
156
+  (0.1ms) begin transaction
157
+  (0.1ms) SAVEPOINT active_record_1
158
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:35:28.650073"], ["updated_at", "2015-09-12 01:35:28.650073"]]
159
+  (0.1ms) RELEASE SAVEPOINT active_record_1
160
+  (0.1ms) SAVEPOINT active_record_1
161
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:35:28.656777"], ["updated_at", "2015-09-12 01:35:28.656777"]]
162
+  (0.1ms) RELEASE SAVEPOINT active_record_1
163
+  (0.1ms) SAVEPOINT active_record_1
164
+ SQL (0.4ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:35:28.666302"], ["updated_at", "2015-09-12 01:35:28.666302"]]
165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
166
+ Animal Load (0.8ms) SELECT "animals".* FROM "animals"
167
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
168
+  (0.7ms) rollback transaction
169
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
170
+  (2.3ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
171
+  (1.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
172
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
173
+  (0.1ms) select sqlite_version(*)
174
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
175
+  (0.2ms) SELECT version FROM "schema_migrations"
176
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
177
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
178
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
179
+  (0.1ms) begin transaction
180
+  (0.1ms) SAVEPOINT active_record_1
181
+ SQL (0.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:40:11.953485"], ["updated_at", "2015-09-12 01:40:11.953485"]]
182
+  (0.1ms) RELEASE SAVEPOINT active_record_1
183
+  (0.0ms) SAVEPOINT active_record_1
184
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:40:11.958975"], ["updated_at", "2015-09-12 01:40:11.958975"]]
185
+  (0.1ms) RELEASE SAVEPOINT active_record_1
186
+  (0.1ms) SAVEPOINT active_record_1
187
+ SQL (0.4ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:40:11.967040"], ["updated_at", "2015-09-12 01:40:11.967040"]]
188
+  (0.1ms) RELEASE SAVEPOINT active_record_1
189
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
190
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
191
+  (0.7ms) rollback transaction
192
+  (0.1ms) begin transaction
193
+  (0.1ms) SAVEPOINT active_record_1
194
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:40:12.001479"], ["updated_at", "2015-09-12 01:40:12.001479"]]
195
+  (0.1ms) RELEASE SAVEPOINT active_record_1
196
+  (0.0ms) SAVEPOINT active_record_1
197
+ SQL (0.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:40:12.004048"], ["updated_at", "2015-09-12 01:40:12.004048"]]
198
+  (0.1ms) RELEASE SAVEPOINT active_record_1
199
+  (0.1ms) SAVEPOINT active_record_1
200
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:40:12.006945"], ["updated_at", "2015-09-12 01:40:12.006945"]]
201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
202
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
203
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
204
+  (0.7ms) rollback transaction
205
+  (0.1ms) begin transaction
206
+  (0.1ms) SAVEPOINT active_record_1
207
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:40:12.017100"], ["updated_at", "2015-09-12 01:40:12.017100"]]
208
+  (0.1ms) RELEASE SAVEPOINT active_record_1
209
+  (0.3ms) SAVEPOINT active_record_1
210
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:40:12.020677"], ["updated_at", "2015-09-12 01:40:12.020677"]]
211
+  (0.1ms) RELEASE SAVEPOINT active_record_1
212
+  (0.1ms) SAVEPOINT active_record_1
213
+ SQL (0.3ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:40:12.024077"], ["updated_at", "2015-09-12 01:40:12.024077"]]
214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
215
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
216
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
217
+  (0.8ms) rollback transaction
218
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
219
+  (2.7ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
220
+  (1.7ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
221
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
222
+  (0.1ms) select sqlite_version(*)
223
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
224
+  (0.1ms) SELECT version FROM "schema_migrations"
225
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
226
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
227
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
228
+  (0.1ms) begin transaction
229
+  (0.1ms) SAVEPOINT active_record_1
230
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:04.045900"], ["updated_at", "2015-09-12 01:42:04.045900"]]
231
+  (0.1ms) RELEASE SAVEPOINT active_record_1
232
+  (0.0ms) SAVEPOINT active_record_1
233
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:04.051069"], ["updated_at", "2015-09-12 01:42:04.051069"]]
234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
235
+  (0.1ms) SAVEPOINT active_record_1
236
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:04.057848"], ["updated_at", "2015-09-12 01:42:04.057848"]]
237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
238
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
239
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
240
+  (0.7ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+  (0.1ms) SAVEPOINT active_record_1
243
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:04.089186"], ["updated_at", "2015-09-12 01:42:04.089186"]]
244
+  (0.1ms) RELEASE SAVEPOINT active_record_1
245
+  (0.0ms) SAVEPOINT active_record_1
246
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:04.091556"], ["updated_at", "2015-09-12 01:42:04.091556"]]
247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
248
+  (0.0ms) SAVEPOINT active_record_1
249
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:04.094353"], ["updated_at", "2015-09-12 01:42:04.094353"]]
250
+  (0.1ms) RELEASE SAVEPOINT active_record_1
251
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
252
+ Plant Load (0.4ms) SELECT "plants".* FROM "plants"
253
+  (0.7ms) rollback transaction
254
+  (0.1ms) begin transaction
255
+  (0.1ms) SAVEPOINT active_record_1
256
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:04.105248"], ["updated_at", "2015-09-12 01:42:04.105248"]]
257
+  (0.1ms) RELEASE SAVEPOINT active_record_1
258
+  (0.1ms) SAVEPOINT active_record_1
259
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:04.108550"], ["updated_at", "2015-09-12 01:42:04.108550"]]
260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
261
+  (0.0ms) SAVEPOINT active_record_1
262
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:04.110641"], ["updated_at", "2015-09-12 01:42:04.110641"]]
263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
264
+  (0.6ms) rollback transaction
265
+  (0.1ms) begin transaction
266
+  (0.0ms) SAVEPOINT active_record_1
267
+ SQL (0.2ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:04.114703"], ["updated_at", "2015-09-12 01:42:04.114703"]]
268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
269
+  (0.0ms) SAVEPOINT active_record_1
270
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:04.116597"], ["updated_at", "2015-09-12 01:42:04.116597"]]
271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
272
+  (0.1ms) SAVEPOINT active_record_1
273
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:04.118834"], ["updated_at", "2015-09-12 01:42:04.118834"]]
274
+  (0.1ms) RELEASE SAVEPOINT active_record_1
275
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
276
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
277
+  (2.9ms) rollback transaction
278
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
279
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
280
+  (1.2ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
281
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
282
+  (0.1ms) select sqlite_version(*)
283
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
284
+  (0.1ms) SELECT version FROM "schema_migrations"
285
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
286
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
287
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
288
+  (0.1ms) begin transaction
289
+  (0.1ms) SAVEPOINT active_record_1
290
+ SQL (0.9ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:23.987678"], ["updated_at", "2015-09-12 01:42:23.987678"]]
291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
292
+  (0.1ms) SAVEPOINT active_record_1
293
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:23.994378"], ["updated_at", "2015-09-12 01:42:23.994378"]]
294
+  (0.1ms) RELEASE SAVEPOINT active_record_1
295
+  (0.1ms) SAVEPOINT active_record_1
296
+ SQL (0.3ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:24.005302"], ["updated_at", "2015-09-12 01:42:24.005302"]]
297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
298
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
299
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
300
+  (0.6ms) rollback transaction
301
+  (0.1ms) begin transaction
302
+  (0.1ms) SAVEPOINT active_record_1
303
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:24.039171"], ["updated_at", "2015-09-12 01:42:24.039171"]]
304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
305
+  (0.1ms) SAVEPOINT active_record_1
306
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:24.041509"], ["updated_at", "2015-09-12 01:42:24.041509"]]
307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
308
+  (0.1ms) SAVEPOINT active_record_1
309
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:24.043949"], ["updated_at", "2015-09-12 01:42:24.043949"]]
310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
311
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
312
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
313
+  (0.9ms) rollback transaction
314
+  (0.1ms) begin transaction
315
+  (0.1ms) SAVEPOINT active_record_1
316
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:24.051086"], ["updated_at", "2015-09-12 01:42:24.051086"]]
317
+  (0.1ms) RELEASE SAVEPOINT active_record_1
318
+  (0.0ms) SAVEPOINT active_record_1
319
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:24.053288"], ["updated_at", "2015-09-12 01:42:24.053288"]]
320
+  (0.1ms) RELEASE SAVEPOINT active_record_1
321
+  (0.1ms) SAVEPOINT active_record_1
322
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:24.056273"], ["updated_at", "2015-09-12 01:42:24.056273"]]
323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
324
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
325
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
326
+  (3.2ms) rollback transaction
327
+  (0.2ms) begin transaction
328
+  (0.1ms) SAVEPOINT active_record_1
329
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:24.069342"], ["updated_at", "2015-09-12 01:42:24.069342"]]
330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
331
+  (0.1ms) SAVEPOINT active_record_1
332
+ SQL (0.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:24.073400"], ["updated_at", "2015-09-12 01:42:24.073400"]]
333
+  (0.1ms) RELEASE SAVEPOINT active_record_1
334
+  (0.1ms) SAVEPOINT active_record_1
335
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:24.076821"], ["updated_at", "2015-09-12 01:42:24.076821"]]
336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
337
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
338
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
339
+  (0.7ms) rollback transaction
340
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
341
+  (1.3ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
342
+  (1.2ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
343
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
344
+  (0.1ms) select sqlite_version(*)
345
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
346
+  (0.3ms) SELECT version FROM "schema_migrations"
347
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
348
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
349
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
350
+  (0.2ms) begin transaction
351
+  (0.2ms) SAVEPOINT active_record_1
352
+ SQL (0.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:38.096745"], ["updated_at", "2015-09-12 01:42:38.096745"]]
353
+  (0.1ms) RELEASE SAVEPOINT active_record_1
354
+  (0.1ms) SAVEPOINT active_record_1
355
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:38.103104"], ["updated_at", "2015-09-12 01:42:38.103104"]]
356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
357
+  (0.3ms) SAVEPOINT active_record_1
358
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:38.113857"], ["updated_at", "2015-09-12 01:42:38.113857"]]
359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
360
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
361
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
362
+  (0.7ms) rollback transaction
363
+  (0.1ms) begin transaction
364
+  (0.3ms) SAVEPOINT active_record_1
365
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:38.145282"], ["updated_at", "2015-09-12 01:42:38.145282"]]
366
+  (0.1ms) RELEASE SAVEPOINT active_record_1
367
+  (0.0ms) SAVEPOINT active_record_1
368
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:38.147320"], ["updated_at", "2015-09-12 01:42:38.147320"]]
369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
370
+  (0.0ms) SAVEPOINT active_record_1
371
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:38.149230"], ["updated_at", "2015-09-12 01:42:38.149230"]]
372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
373
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
374
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
375
+  (0.9ms) rollback transaction
376
+  (0.1ms) begin transaction
377
+  (0.1ms) SAVEPOINT active_record_1
378
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:38.155906"], ["updated_at", "2015-09-12 01:42:38.155906"]]
379
+  (0.1ms) RELEASE SAVEPOINT active_record_1
380
+  (0.0ms) SAVEPOINT active_record_1
381
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:38.158647"], ["updated_at", "2015-09-12 01:42:38.158647"]]
382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
383
+  (0.0ms) SAVEPOINT active_record_1
384
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:38.160928"], ["updated_at", "2015-09-12 01:42:38.160928"]]
385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
386
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
387
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
388
+  (0.7ms) rollback transaction
389
+  (0.1ms) begin transaction
390
+  (0.1ms) SAVEPOINT active_record_1
391
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:42:38.169043"], ["updated_at", "2015-09-12 01:42:38.169043"]]
392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
393
+  (0.0ms) SAVEPOINT active_record_1
394
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:42:38.172130"], ["updated_at", "2015-09-12 01:42:38.172130"]]
395
+  (0.1ms) RELEASE SAVEPOINT active_record_1
396
+  (0.1ms) SAVEPOINT active_record_1
397
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:42:38.174841"], ["updated_at", "2015-09-12 01:42:38.174841"]]
398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
399
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
400
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
401
+  (0.6ms) rollback transaction
402
+ ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
403
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
404
+  (1.4ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
405
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
406
+  (0.1ms) select sqlite_version(*)
407
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
408
+  (0.1ms) SELECT version FROM "schema_migrations"
409
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
410
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
411
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
412
+  (0.1ms) begin transaction
413
+  (0.1ms) SAVEPOINT active_record_1
414
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:01.079971"], ["updated_at", "2015-09-12 01:45:01.079971"]]
415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
416
+  (0.1ms) SAVEPOINT active_record_1
417
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:01.085567"], ["updated_at", "2015-09-12 01:45:01.085567"]]
418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
419
+  (0.1ms) SAVEPOINT active_record_1
420
+ SQL (0.3ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:01.095919"], ["updated_at", "2015-09-12 01:45:01.095919"]]
421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
422
+ Animal Load (2.0ms) SELECT "animals".* FROM "animals"
423
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
424
+  (0.9ms) rollback transaction
425
+  (0.3ms) begin transaction
426
+  (0.4ms) SAVEPOINT active_record_1
427
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:01.152917"], ["updated_at", "2015-09-12 01:45:01.152917"]]
428
+  (0.1ms) RELEASE SAVEPOINT active_record_1
429
+  (0.1ms) SAVEPOINT active_record_1
430
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:01.155893"], ["updated_at", "2015-09-12 01:45:01.155893"]]
431
+  (0.1ms) RELEASE SAVEPOINT active_record_1
432
+  (0.1ms) SAVEPOINT active_record_1
433
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:01.157970"], ["updated_at", "2015-09-12 01:45:01.157970"]]
434
+  (0.1ms) RELEASE SAVEPOINT active_record_1
435
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
436
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
437
+  (0.9ms) rollback transaction
438
+  (0.1ms) begin transaction
439
+  (0.1ms) SAVEPOINT active_record_1
440
+ SQL (1.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:01.175076"], ["updated_at", "2015-09-12 01:45:01.175076"]]
441
+  (0.3ms) RELEASE SAVEPOINT active_record_1
442
+  (0.1ms) SAVEPOINT active_record_1
443
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:01.183317"], ["updated_at", "2015-09-12 01:45:01.183317"]]
444
+  (0.1ms) RELEASE SAVEPOINT active_record_1
445
+  (0.1ms) SAVEPOINT active_record_1
446
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:01.188344"], ["updated_at", "2015-09-12 01:45:01.188344"]]
447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
448
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
449
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
450
+  (1.6ms) rollback transaction
451
+  (0.1ms) begin transaction
452
+  (0.1ms) SAVEPOINT active_record_1
453
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:01.201808"], ["updated_at", "2015-09-12 01:45:01.201808"]]
454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
455
+  (0.0ms) SAVEPOINT active_record_1
456
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:01.204682"], ["updated_at", "2015-09-12 01:45:01.204682"]]
457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
458
+  (0.0ms) SAVEPOINT active_record_1
459
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:01.207643"], ["updated_at", "2015-09-12 01:45:01.207643"]]
460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
461
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
462
+ Plant Load (0.4ms) SELECT "plants".* FROM "plants"
463
+  (1.0ms) rollback transaction
464
+  (0.6ms) begin transaction
465
+  (0.1ms) SAVEPOINT active_record_1
466
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:01.225062"], ["updated_at", "2015-09-12 01:45:01.225062"]]
467
+  (0.1ms) RELEASE SAVEPOINT active_record_1
468
+  (0.1ms) SAVEPOINT active_record_1
469
+ SQL (0.9ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:01.227812"], ["updated_at", "2015-09-12 01:45:01.227812"]]
470
+  (0.1ms) RELEASE SAVEPOINT active_record_1
471
+  (0.1ms) SAVEPOINT active_record_1
472
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:01.235259"], ["updated_at", "2015-09-12 01:45:01.235259"]]
473
+  (0.1ms) RELEASE SAVEPOINT active_record_1
474
+  (0.1ms) SAVEPOINT active_record_1
475
+ SQL (0.2ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 01:45:01.238238"], ["id", 1]]
476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
477
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
478
+ Plant Load (0.0ms) SELECT "plants".* FROM "plants"
479
+  (0.8ms) rollback transaction
480
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
481
+  (1.6ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
482
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
483
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
484
+  (0.1ms) select sqlite_version(*)
485
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
486
+  (0.1ms) SELECT version FROM "schema_migrations"
487
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
488
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
489
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
490
+  (0.1ms) begin transaction
491
+  (0.1ms) SAVEPOINT active_record_1
492
+ SQL (1.2ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:41.830391"], ["updated_at", "2015-09-12 01:45:41.830391"]]
493
+  (0.1ms) RELEASE SAVEPOINT active_record_1
494
+  (0.0ms) SAVEPOINT active_record_1
495
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:41.835907"], ["updated_at", "2015-09-12 01:45:41.835907"]]
496
+  (0.1ms) RELEASE SAVEPOINT active_record_1
497
+  (0.1ms) SAVEPOINT active_record_1
498
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:41.843617"], ["updated_at", "2015-09-12 01:45:41.843617"]]
499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
500
+ Animal Load (0.4ms) SELECT "animals".* FROM "animals"
501
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
502
+  (1.4ms) rollback transaction
503
+  (0.1ms) begin transaction
504
+  (0.1ms) SAVEPOINT active_record_1
505
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:41.890654"], ["updated_at", "2015-09-12 01:45:41.890654"]]
506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
507
+  (0.1ms) SAVEPOINT active_record_1
508
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:41.892975"], ["updated_at", "2015-09-12 01:45:41.892975"]]
509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
510
+  (0.0ms) SAVEPOINT active_record_1
511
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:41.895536"], ["updated_at", "2015-09-12 01:45:41.895536"]]
512
+  (0.1ms) RELEASE SAVEPOINT active_record_1
513
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
514
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
515
+  (0.6ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+  (0.0ms) SAVEPOINT active_record_1
518
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:41.905209"], ["updated_at", "2015-09-12 01:45:41.905209"]]
519
+  (0.1ms) RELEASE SAVEPOINT active_record_1
520
+  (0.0ms) SAVEPOINT active_record_1
521
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:41.907063"], ["updated_at", "2015-09-12 01:45:41.907063"]]
522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
523
+  (0.1ms) SAVEPOINT active_record_1
524
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:41.909254"], ["updated_at", "2015-09-12 01:45:41.909254"]]
525
+  (0.1ms) RELEASE SAVEPOINT active_record_1
526
+  (0.0ms) SAVEPOINT active_record_1
527
+ SQL (0.2ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 01:45:41.911449"], ["id", 1]]
528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
529
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
530
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
531
+  (0.8ms) rollback transaction
532
+  (0.1ms) begin transaction
533
+  (0.1ms) SAVEPOINT active_record_1
534
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:41.965579"], ["updated_at", "2015-09-12 01:45:41.965579"]]
535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
536
+  (0.0ms) SAVEPOINT active_record_1
537
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:41.967980"], ["updated_at", "2015-09-12 01:45:41.967980"]]
538
+  (0.1ms) RELEASE SAVEPOINT active_record_1
539
+  (0.1ms) SAVEPOINT active_record_1
540
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:41.971017"], ["updated_at", "2015-09-12 01:45:41.971017"]]
541
+  (0.1ms) RELEASE SAVEPOINT active_record_1
542
+ Animal Load (0.5ms) SELECT "animals".* FROM "animals"
543
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
544
+  (0.6ms) rollback transaction
545
+  (0.1ms) begin transaction
546
+  (0.1ms) SAVEPOINT active_record_1
547
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:45:41.981135"], ["updated_at", "2015-09-12 01:45:41.981135"]]
548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
549
+  (0.0ms) SAVEPOINT active_record_1
550
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:45:41.983549"], ["updated_at", "2015-09-12 01:45:41.983549"]]
551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
552
+  (0.1ms) SAVEPOINT active_record_1
553
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:45:41.985658"], ["updated_at", "2015-09-12 01:45:41.985658"]]
554
+  (0.1ms) RELEASE SAVEPOINT active_record_1
555
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
556
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
557
+  (0.8ms) rollback transaction
558
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
559
+  (1.6ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
560
+  (0.8ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
561
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
562
+  (0.1ms) select sqlite_version(*)
563
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
564
+  (0.1ms) SELECT version FROM "schema_migrations"
565
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
566
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
567
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
568
+  (0.1ms) begin transaction
569
+  (0.1ms) SAVEPOINT active_record_1
570
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:46:49.035917"], ["updated_at", "2015-09-12 01:46:49.035917"]]
571
+  (0.1ms) RELEASE SAVEPOINT active_record_1
572
+  (0.0ms) SAVEPOINT active_record_1
573
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:46:49.041843"], ["updated_at", "2015-09-12 01:46:49.041843"]]
574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
575
+  (0.1ms) SAVEPOINT active_record_1
576
+ SQL (0.3ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:46:49.049304"], ["updated_at", "2015-09-12 01:46:49.049304"]]
577
+  (0.1ms) RELEASE SAVEPOINT active_record_1
578
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
579
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
580
+  (0.7ms) rollback transaction
581
+  (0.1ms) begin transaction
582
+  (0.1ms) SAVEPOINT active_record_1
583
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:46:49.080394"], ["updated_at", "2015-09-12 01:46:49.080394"]]
584
+  (0.1ms) RELEASE SAVEPOINT active_record_1
585
+  (0.1ms) SAVEPOINT active_record_1
586
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:46:49.084006"], ["updated_at", "2015-09-12 01:46:49.084006"]]
587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
588
+  (0.1ms) SAVEPOINT active_record_1
589
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:46:49.087839"], ["updated_at", "2015-09-12 01:46:49.087839"]]
590
+  (0.1ms) RELEASE SAVEPOINT active_record_1
591
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
592
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
593
+  (0.7ms) rollback transaction
594
+  (0.1ms) begin transaction
595
+  (0.1ms) SAVEPOINT active_record_1
596
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:46:49.097511"], ["updated_at", "2015-09-12 01:46:49.097511"]]
597
+  (0.1ms) RELEASE SAVEPOINT active_record_1
598
+  (0.0ms) SAVEPOINT active_record_1
599
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:46:49.099959"], ["updated_at", "2015-09-12 01:46:49.099959"]]
600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
601
+  (0.1ms) SAVEPOINT active_record_1
602
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:46:49.102457"], ["updated_at", "2015-09-12 01:46:49.102457"]]
603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
604
+  (0.1ms) SAVEPOINT active_record_1
605
+ SQL (0.2ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 01:46:49.105165"], ["id", 1]]
606
+  (0.1ms) RELEASE SAVEPOINT active_record_1
607
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
608
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
609
+  (0.5ms) rollback transaction
610
+  (0.0ms) begin transaction
611
+  (0.0ms) SAVEPOINT active_record_1
612
+ SQL (0.2ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:46:49.119000"], ["updated_at", "2015-09-12 01:46:49.119000"]]
613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
614
+  (0.0ms) SAVEPOINT active_record_1
615
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:46:49.120543"], ["updated_at", "2015-09-12 01:46:49.120543"]]
616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
617
+  (0.0ms) SAVEPOINT active_record_1
618
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:46:49.122057"], ["updated_at", "2015-09-12 01:46:49.122057"]]
619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
620
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
621
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
622
+  (0.8ms) rollback transaction
623
+  (0.2ms) begin transaction
624
+  (0.1ms) SAVEPOINT active_record_1
625
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:46:49.132378"], ["updated_at", "2015-09-12 01:46:49.132378"]]
626
+  (0.1ms) RELEASE SAVEPOINT active_record_1
627
+  (0.1ms) SAVEPOINT active_record_1
628
+ SQL (1.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:46:49.136300"], ["updated_at", "2015-09-12 01:46:49.136300"]]
629
+  (0.3ms) RELEASE SAVEPOINT active_record_1
630
+  (0.1ms) SAVEPOINT active_record_1
631
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:46:49.141992"], ["updated_at", "2015-09-12 01:46:49.141992"]]
632
+  (0.1ms) RELEASE SAVEPOINT active_record_1
633
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
634
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
635
+  (0.6ms) rollback transaction
636
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
637
+  (1.4ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
638
+  (1.5ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
639
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
640
+  (0.1ms) select sqlite_version(*)
641
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
642
+  (0.1ms) SELECT version FROM "schema_migrations"
643
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
644
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
645
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
646
+  (0.1ms) begin transaction
647
+  (0.1ms) SAVEPOINT active_record_1
648
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:47:00.469314"], ["updated_at", "2015-09-12 01:47:00.469314"]]
649
+  (0.1ms) RELEASE SAVEPOINT active_record_1
650
+  (0.0ms) SAVEPOINT active_record_1
651
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:47:00.475561"], ["updated_at", "2015-09-12 01:47:00.475561"]]
652
+  (0.2ms) RELEASE SAVEPOINT active_record_1
653
+  (2.1ms) SAVEPOINT active_record_1
654
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:47:00.502416"], ["updated_at", "2015-09-12 01:47:00.502416"]]
655
+  (0.1ms) RELEASE SAVEPOINT active_record_1
656
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
657
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
658
+  (1.0ms) rollback transaction
659
+  (0.1ms) begin transaction
660
+  (0.1ms) SAVEPOINT active_record_1
661
+ SQL (0.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:47:00.548730"], ["updated_at", "2015-09-12 01:47:00.548730"]]
662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
663
+  (0.1ms) SAVEPOINT active_record_1
664
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:47:00.553252"], ["updated_at", "2015-09-12 01:47:00.553252"]]
665
+  (0.1ms) RELEASE SAVEPOINT active_record_1
666
+  (0.1ms) SAVEPOINT active_record_1
667
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:47:00.557027"], ["updated_at", "2015-09-12 01:47:00.557027"]]
668
+  (0.1ms) RELEASE SAVEPOINT active_record_1
669
+ Animal Load (0.4ms) SELECT "animals".* FROM "animals"
670
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
671
+  (1.5ms) rollback transaction
672
+  (0.1ms) begin transaction
673
+  (0.1ms) SAVEPOINT active_record_1
674
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:47:00.591225"], ["updated_at", "2015-09-12 01:47:00.591225"]]
675
+  (0.1ms) RELEASE SAVEPOINT active_record_1
676
+  (0.1ms) SAVEPOINT active_record_1
677
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:47:00.600225"], ["updated_at", "2015-09-12 01:47:00.600225"]]
678
+  (0.1ms) RELEASE SAVEPOINT active_record_1
679
+  (0.1ms) SAVEPOINT active_record_1
680
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:47:00.602714"], ["updated_at", "2015-09-12 01:47:00.602714"]]
681
+  (0.1ms) RELEASE SAVEPOINT active_record_1
682
+  (0.0ms) SAVEPOINT active_record_1
683
+ SQL (0.7ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 01:47:00.604908"], ["id", 1]]
684
+  (0.1ms) RELEASE SAVEPOINT active_record_1
685
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
686
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
687
+  (1.0ms) rollback transaction
688
+  (0.1ms) begin transaction
689
+  (0.1ms) SAVEPOINT active_record_1
690
+ SQL (0.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:47:00.622134"], ["updated_at", "2015-09-12 01:47:00.622134"]]
691
+  (0.1ms) RELEASE SAVEPOINT active_record_1
692
+  (0.1ms) SAVEPOINT active_record_1
693
+ SQL (1.2ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:47:00.626331"], ["updated_at", "2015-09-12 01:47:00.626331"]]
694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
695
+  (0.1ms) SAVEPOINT active_record_1
696
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:47:00.647211"], ["updated_at", "2015-09-12 01:47:00.647211"]]
697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
698
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
699
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
700
+  (1.0ms) rollback transaction
701
+  (0.1ms) begin transaction
702
+  (0.1ms) SAVEPOINT active_record_1
703
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:47:00.657819"], ["updated_at", "2015-09-12 01:47:00.657819"]]
704
+  (0.1ms) RELEASE SAVEPOINT active_record_1
705
+  (0.1ms) SAVEPOINT active_record_1
706
+ SQL (0.9ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:47:00.661002"], ["updated_at", "2015-09-12 01:47:00.661002"]]
707
+  (0.1ms) RELEASE SAVEPOINT active_record_1
708
+  (0.1ms) SAVEPOINT active_record_1
709
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:47:00.664399"], ["updated_at", "2015-09-12 01:47:00.664399"]]
710
+  (0.1ms) RELEASE SAVEPOINT active_record_1
711
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
712
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
713
+  (2.2ms) rollback transaction
714
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
715
+  (1.8ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
716
+  (0.9ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
717
+  (0.9ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
718
+  (1.3ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
719
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
720
+  (0.1ms) select sqlite_version(*)
721
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
722
+  (0.1ms) SELECT version FROM "schema_migrations"
723
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
724
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
725
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
726
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
727
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
728
+  (0.1ms) begin transaction
729
+  (0.1ms) SAVEPOINT active_record_1
730
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:58:29.358630"], ["updated_at", "2015-09-12 01:58:29.358630"]]
731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
732
+  (0.0ms) SAVEPOINT active_record_1
733
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:58:29.364463"], ["updated_at", "2015-09-12 01:58:29.364463"]]
734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
735
+  (0.1ms) SAVEPOINT active_record_1
736
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:58:29.370861"], ["updated_at", "2015-09-12 01:58:29.370861"]]
737
+  (0.1ms) RELEASE SAVEPOINT active_record_1
738
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
739
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
740
+  (0.6ms) rollback transaction
741
+  (0.1ms) begin transaction
742
+  (0.1ms) SAVEPOINT active_record_1
743
+ SQL (1.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:58:29.413982"], ["updated_at", "2015-09-12 01:58:29.413982"]]
744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
745
+  (0.0ms) SAVEPOINT active_record_1
746
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:58:29.418566"], ["updated_at", "2015-09-12 01:58:29.418566"]]
747
+  (0.1ms) RELEASE SAVEPOINT active_record_1
748
+  (0.0ms) SAVEPOINT active_record_1
749
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:58:29.421101"], ["updated_at", "2015-09-12 01:58:29.421101"]]
750
+  (0.1ms) RELEASE SAVEPOINT active_record_1
751
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
752
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
753
+  (0.7ms) rollback transaction
754
+  (0.1ms) begin transaction
755
+  (0.0ms) SAVEPOINT active_record_1
756
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:58:29.435993"], ["updated_at", "2015-09-12 01:58:29.435993"]]
757
+  (0.1ms) RELEASE SAVEPOINT active_record_1
758
+  (0.0ms) SAVEPOINT active_record_1
759
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:58:29.437768"], ["updated_at", "2015-09-12 01:58:29.437768"]]
760
+  (0.0ms) RELEASE SAVEPOINT active_record_1
761
+  (0.0ms) SAVEPOINT active_record_1
762
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:58:29.439434"], ["updated_at", "2015-09-12 01:58:29.439434"]]
763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
764
+  (0.0ms) SAVEPOINT active_record_1
765
+ SQL (0.2ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 01:58:29.440857"], ["id", 1]]
766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
767
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
768
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
769
+  (0.8ms) rollback transaction
770
+  (0.1ms) begin transaction
771
+  (0.1ms) SAVEPOINT active_record_1
772
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:58:29.457640"], ["updated_at", "2015-09-12 01:58:29.457640"]]
773
+  (0.1ms) RELEASE SAVEPOINT active_record_1
774
+  (0.1ms) SAVEPOINT active_record_1
775
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:58:29.462123"], ["updated_at", "2015-09-12 01:58:29.462123"]]
776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
777
+  (0.1ms) SAVEPOINT active_record_1
778
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:58:29.465006"], ["updated_at", "2015-09-12 01:58:29.465006"]]
779
+  (0.2ms) RELEASE SAVEPOINT active_record_1
780
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
781
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
782
+  (0.8ms) rollback transaction
783
+  (0.1ms) begin transaction
784
+  (0.1ms) SAVEPOINT active_record_1
785
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 01:58:29.479458"], ["updated_at", "2015-09-12 01:58:29.479458"]]
786
+  (0.4ms) RELEASE SAVEPOINT active_record_1
787
+  (0.2ms) SAVEPOINT active_record_1
788
+ SQL (0.9ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 01:58:29.485996"], ["updated_at", "2015-09-12 01:58:29.485996"]]
789
+  (0.1ms) RELEASE SAVEPOINT active_record_1
790
+  (0.1ms) SAVEPOINT active_record_1
791
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 01:58:29.490070"], ["updated_at", "2015-09-12 01:58:29.490070"]]
792
+  (0.1ms) RELEASE SAVEPOINT active_record_1
793
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
794
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
795
+  (0.7ms) rollback transaction
796
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
797
+  (2.3ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
798
+  (1.2ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
799
+  (2.7ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
800
+  (3.6ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
801
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
802
+  (0.1ms) select sqlite_version(*)
803
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
804
+  (0.1ms) SELECT version FROM "schema_migrations"
805
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
806
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
807
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
808
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
809
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
810
+  (0.1ms) begin transaction
811
+  (0.1ms) SAVEPOINT active_record_1
812
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:22:30.557965"], ["updated_at", "2015-09-12 02:22:30.557965"]]
813
+  (0.1ms) RELEASE SAVEPOINT active_record_1
814
+  (0.0ms) SAVEPOINT active_record_1
815
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:22:30.563769"], ["updated_at", "2015-09-12 02:22:30.563769"]]
816
+  (0.1ms) RELEASE SAVEPOINT active_record_1
817
+  (0.1ms) SAVEPOINT active_record_1
818
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:22:30.572888"], ["updated_at", "2015-09-12 02:22:30.572888"]]
819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
820
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
821
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
822
+  (0.8ms) rollback transaction
823
+  (0.1ms) begin transaction
824
+  (0.0ms) SAVEPOINT active_record_1
825
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:22:30.605740"], ["updated_at", "2015-09-12 02:22:30.605740"]]
826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
827
+  (0.0ms) SAVEPOINT active_record_1
828
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:22:30.607802"], ["updated_at", "2015-09-12 02:22:30.607802"]]
829
+  (0.1ms) RELEASE SAVEPOINT active_record_1
830
+  (0.0ms) SAVEPOINT active_record_1
831
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:22:30.610216"], ["updated_at", "2015-09-12 02:22:30.610216"]]
832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
833
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
834
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
835
+  (0.7ms) rollback transaction
836
+  (0.2ms) begin transaction
837
+  (0.1ms) SAVEPOINT active_record_1
838
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:22:30.620228"], ["updated_at", "2015-09-12 02:22:30.620228"]]
839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
840
+  (0.1ms) SAVEPOINT active_record_1
841
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:22:30.622906"], ["updated_at", "2015-09-12 02:22:30.622906"]]
842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
843
+  (0.0ms) SAVEPOINT active_record_1
844
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:22:30.626040"], ["updated_at", "2015-09-12 02:22:30.626040"]]
845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
846
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
847
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
848
+  (1.8ms) rollback transaction
849
+  (0.1ms) begin transaction
850
+  (0.1ms) SAVEPOINT active_record_1
851
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:22:30.636885"], ["updated_at", "2015-09-12 02:22:30.636885"]]
852
+  (0.2ms) RELEASE SAVEPOINT active_record_1
853
+  (0.1ms) SAVEPOINT active_record_1
854
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:22:30.641105"], ["updated_at", "2015-09-12 02:22:30.641105"]]
855
+  (0.1ms) RELEASE SAVEPOINT active_record_1
856
+  (0.1ms) SAVEPOINT active_record_1
857
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:22:30.644757"], ["updated_at", "2015-09-12 02:22:30.644757"]]
858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
859
+  (0.0ms) SAVEPOINT active_record_1
860
+ SQL (0.2ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 02:22:30.646543"], ["id", 1]]
861
+  (0.1ms) RELEASE SAVEPOINT active_record_1
862
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
863
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
864
+  (0.7ms) rollback transaction
865
+  (0.1ms) begin transaction
866
+  (0.1ms) SAVEPOINT active_record_1
867
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:22:30.658839"], ["updated_at", "2015-09-12 02:22:30.658839"]]
868
+  (0.1ms) RELEASE SAVEPOINT active_record_1
869
+  (0.1ms) SAVEPOINT active_record_1
870
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:22:30.661147"], ["updated_at", "2015-09-12 02:22:30.661147"]]
871
+  (0.2ms) RELEASE SAVEPOINT active_record_1
872
+  (0.0ms) SAVEPOINT active_record_1
873
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:22:30.664769"], ["updated_at", "2015-09-12 02:22:30.664769"]]
874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
875
+ Animal Load (0.4ms) SELECT "animals".* FROM "animals"
876
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
877
+  (0.6ms) rollback transaction
878
+  (0.1ms) begin transaction
879
+  (0.1ms) rollback transaction
880
+  (0.1ms) begin transaction
881
+  (0.0ms) rollback transaction
882
+  (0.0ms) begin transaction
883
+  (0.0ms) rollback transaction
884
+  (0.1ms) begin transaction
885
+  (0.0ms) rollback transaction
886
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
887
+  (2.3ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
888
+  (3.3ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
889
+  (1.3ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
890
+  (1.7ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
891
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
892
+  (0.4ms) select sqlite_version(*)
893
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
894
+  (0.2ms) SELECT version FROM "schema_migrations"
895
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
896
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
897
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
898
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
899
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
900
+  (0.1ms) begin transaction
901
+  (0.2ms) SAVEPOINT active_record_1
902
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:25.487731"], ["updated_at", "2015-09-12 02:36:25.487731"]]
903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
904
+  (0.0ms) SAVEPOINT active_record_1
905
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.492553"], ["updated_at", "2015-09-12 02:36:25.492553"]]
906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
907
+  (0.1ms) SAVEPOINT active_record_1
908
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:25.498864"], ["updated_at", "2015-09-12 02:36:25.498864"]]
909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
910
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
911
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
912
+  (0.7ms) rollback transaction
913
+  (0.1ms) begin transaction
914
+  (0.0ms) SAVEPOINT active_record_1
915
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:25.533431"], ["updated_at", "2015-09-12 02:36:25.533431"]]
916
+  (0.1ms) RELEASE SAVEPOINT active_record_1
917
+  (0.0ms) SAVEPOINT active_record_1
918
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.535654"], ["updated_at", "2015-09-12 02:36:25.535654"]]
919
+  (0.1ms) RELEASE SAVEPOINT active_record_1
920
+  (0.0ms) SAVEPOINT active_record_1
921
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:25.537594"], ["updated_at", "2015-09-12 02:36:25.537594"]]
922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
923
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
924
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
925
+  (0.7ms) rollback transaction
926
+  (0.1ms) begin transaction
927
+  (0.1ms) SAVEPOINT active_record_1
928
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:25.544406"], ["updated_at", "2015-09-12 02:36:25.544406"]]
929
+  (0.1ms) RELEASE SAVEPOINT active_record_1
930
+  (0.1ms) SAVEPOINT active_record_1
931
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.546827"], ["updated_at", "2015-09-12 02:36:25.546827"]]
932
+  (0.1ms) RELEASE SAVEPOINT active_record_1
933
+  (0.1ms) SAVEPOINT active_record_1
934
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:25.549473"], ["updated_at", "2015-09-12 02:36:25.549473"]]
935
+  (0.1ms) RELEASE SAVEPOINT active_record_1
936
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
937
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
938
+  (0.8ms) rollback transaction
939
+  (0.2ms) begin transaction
940
+  (0.1ms) SAVEPOINT active_record_1
941
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:25.558672"], ["updated_at", "2015-09-12 02:36:25.558672"]]
942
+  (0.1ms) RELEASE SAVEPOINT active_record_1
943
+  (0.1ms) SAVEPOINT active_record_1
944
+ SQL (2.9ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.561744"], ["updated_at", "2015-09-12 02:36:25.561744"]]
945
+  (0.1ms) RELEASE SAVEPOINT active_record_1
946
+  (0.1ms) SAVEPOINT active_record_1
947
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:25.566812"], ["updated_at", "2015-09-12 02:36:25.566812"]]
948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
949
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
950
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
951
+  (4.3ms) rollback transaction
952
+  (0.1ms) begin transaction
953
+  (0.1ms) SAVEPOINT active_record_1
954
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:25.579134"], ["updated_at", "2015-09-12 02:36:25.579134"]]
955
+  (0.1ms) RELEASE SAVEPOINT active_record_1
956
+  (0.1ms) SAVEPOINT active_record_1
957
+ SQL (1.0ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.582529"], ["updated_at", "2015-09-12 02:36:25.582529"]]
958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
959
+  (0.1ms) SAVEPOINT active_record_1
960
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:25.589370"], ["updated_at", "2015-09-12 02:36:25.589370"]]
961
+  (0.1ms) RELEASE SAVEPOINT active_record_1
962
+  (0.1ms) SAVEPOINT active_record_1
963
+ SQL (0.4ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 02:36:25.591754"], ["id", 1]]
964
+  (0.2ms) RELEASE SAVEPOINT active_record_1
965
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
966
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
967
+  (0.7ms) rollback transaction
968
+  (0.1ms) begin transaction
969
+  (0.1ms) rollback transaction
970
+  (0.1ms) begin transaction
971
+  (0.4ms) rollback transaction
972
+  (0.1ms) begin transaction
973
+  (0.1ms) rollback transaction
974
+  (0.0ms) begin transaction
975
+  (0.1ms) rollback transaction
976
+  (0.1ms) begin transaction
977
+  (0.0ms) SAVEPOINT active_record_1
978
+ SQL (0.8ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:25.617391"], ["updated_at", "2015-09-12 02:36:25.617391"]]
979
+  (0.1ms) RELEASE SAVEPOINT active_record_1
980
+  (0.1ms) SAVEPOINT active_record_1
981
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.621724"], ["updated_at", "2015-09-12 02:36:25.621724"]]
982
+  (0.1ms) RELEASE SAVEPOINT active_record_1
983
+  (1.9ms) rollback transaction
984
+  (0.1ms) begin transaction
985
+  (0.1ms) SAVEPOINT active_record_1
986
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.628239"], ["updated_at", "2015-09-12 02:36:25.628239"]]
987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
988
+  (0.1ms) SAVEPOINT active_record_1
989
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "eats_id", "eats_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["eats_id", 1], ["eats_type", "Animal"], ["created_at", "2015-09-12 02:36:25.631924"], ["updated_at", "2015-09-12 02:36:25.631924"]]
990
+  (0.1ms) RELEASE SAVEPOINT active_record_1
991
+  (0.7ms) rollback transaction
992
+  (0.1ms) begin transaction
993
+  (0.1ms) SAVEPOINT active_record_1
994
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.642464"], ["updated_at", "2015-09-12 02:36:25.642464"]]
995
+  (0.1ms) RELEASE SAVEPOINT active_record_1
996
+  (0.5ms) rollback transaction
997
+  (0.1ms) begin transaction
998
+  (0.1ms) SAVEPOINT active_record_1
999
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:25.647137"], ["updated_at", "2015-09-12 02:36:25.647137"]]
1000
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1001
+  (0.1ms) SAVEPOINT active_record_1
1002
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "eats_id", "eats_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["eats_id", 1], ["eats_type", "Animal"], ["created_at", "2015-09-12 02:36:25.651364"], ["updated_at", "2015-09-12 02:36:25.651364"]]
1003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1004
+  (0.7ms) rollback transaction
1005
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1006
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1007
+  (0.9ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1008
+  (1.0ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1009
+  (1.8ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1010
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1011
+  (0.1ms) select sqlite_version(*)
1012
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1013
+  (0.1ms) SELECT version FROM "schema_migrations"
1014
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
1015
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
1016
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
1017
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
1018
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1019
+  (0.1ms) begin transaction
1020
+  (0.1ms) rollback transaction
1021
+  (0.1ms) begin transaction
1022
+  (0.0ms) rollback transaction
1023
+  (0.0ms) begin transaction
1024
+  (0.1ms) rollback transaction
1025
+  (0.1ms) begin transaction
1026
+  (0.0ms) rollback transaction
1027
+  (0.1ms) begin transaction
1028
+  (0.1ms) SAVEPOINT active_record_1
1029
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:50.981175"], ["updated_at", "2015-09-12 02:36:50.981175"]]
1030
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1031
+  (0.1ms) SAVEPOINT active_record_1
1032
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "eats_id", "eats_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["eats_id", 1], ["eats_type", "Animal"], ["created_at", "2015-09-12 02:36:50.992565"], ["updated_at", "2015-09-12 02:36:50.992565"]]
1033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034
+  (0.6ms) rollback transaction
1035
+  (0.1ms) begin transaction
1036
+  (0.0ms) SAVEPOINT active_record_1
1037
+ SQL (0.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:50.996346"], ["updated_at", "2015-09-12 02:36:50.996346"]]
1038
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1039
+  (0.5ms) rollback transaction
1040
+  (0.1ms) begin transaction
1041
+  (0.1ms) SAVEPOINT active_record_1
1042
+ SQL (0.4ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:51.006906"], ["updated_at", "2015-09-12 02:36:51.006906"]]
1043
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1044
+  (0.1ms) SAVEPOINT active_record_1
1045
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:51.009202"], ["updated_at", "2015-09-12 02:36:51.009202"]]
1046
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1047
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants" WHERE "plants"."id" = ? LIMIT 1 [["id", 1]]
1048
+  (0.7ms) rollback transaction
1049
+  (0.1ms) begin transaction
1050
+  (0.1ms) SAVEPOINT active_record_1
1051
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:51.022874"], ["updated_at", "2015-09-12 02:36:51.022874"]]
1052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1053
+  (0.0ms) SAVEPOINT active_record_1
1054
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "eats_id", "eats_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["eats_id", 1], ["eats_type", "Animal"], ["created_at", "2015-09-12 02:36:51.026120"], ["updated_at", "2015-09-12 02:36:51.026120"]]
1055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1056
+  (0.6ms) rollback transaction
1057
+  (0.1ms) begin transaction
1058
+  (0.1ms) SAVEPOINT active_record_1
1059
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:51.030741"], ["updated_at", "2015-09-12 02:36:51.030741"]]
1060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1061
+  (0.0ms) SAVEPOINT active_record_1
1062
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:51.033534"], ["updated_at", "2015-09-12 02:36:51.033534"]]
1063
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1064
+  (0.1ms) SAVEPOINT active_record_1
1065
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:51.035982"], ["updated_at", "2015-09-12 02:36:51.035982"]]
1066
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1067
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
1068
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
1069
+  (0.9ms) rollback transaction
1070
+  (0.1ms) begin transaction
1071
+  (0.1ms) SAVEPOINT active_record_1
1072
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:51.066698"], ["updated_at", "2015-09-12 02:36:51.066698"]]
1073
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1074
+  (0.1ms) SAVEPOINT active_record_1
1075
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:51.070105"], ["updated_at", "2015-09-12 02:36:51.070105"]]
1076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077
+  (0.0ms) SAVEPOINT active_record_1
1078
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:51.071993"], ["updated_at", "2015-09-12 02:36:51.071993"]]
1079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
1081
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
1082
+  (0.6ms) rollback transaction
1083
+  (0.0ms) begin transaction
1084
+  (0.0ms) SAVEPOINT active_record_1
1085
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:51.080401"], ["updated_at", "2015-09-12 02:36:51.080401"]]
1086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1087
+  (0.1ms) SAVEPOINT active_record_1
1088
+ SQL (0.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:51.082659"], ["updated_at", "2015-09-12 02:36:51.082659"]]
1089
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1090
+  (0.1ms) SAVEPOINT active_record_1
1091
+ SQL (0.3ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:51.088213"], ["updated_at", "2015-09-12 02:36:51.088213"]]
1092
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1093
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
1094
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
1095
+  (0.9ms) rollback transaction
1096
+  (0.1ms) begin transaction
1097
+  (0.1ms) SAVEPOINT active_record_1
1098
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:51.100900"], ["updated_at", "2015-09-12 02:36:51.100900"]]
1099
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1100
+  (0.1ms) SAVEPOINT active_record_1
1101
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:51.105548"], ["updated_at", "2015-09-12 02:36:51.105548"]]
1102
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1103
+  (0.1ms) SAVEPOINT active_record_1
1104
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:51.111727"], ["updated_at", "2015-09-12 02:36:51.111727"]]
1105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1106
+  (0.0ms) SAVEPOINT active_record_1
1107
+ SQL (0.3ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 02:36:51.113414"], ["id", 1]]
1108
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1109
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
1110
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
1111
+  (0.8ms) rollback transaction
1112
+  (0.1ms) begin transaction
1113
+  (0.1ms) SAVEPOINT active_record_1
1114
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:36:51.125535"], ["updated_at", "2015-09-12 02:36:51.125535"]]
1115
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1116
+  (0.0ms) SAVEPOINT active_record_1
1117
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:36:51.128201"], ["updated_at", "2015-09-12 02:36:51.128201"]]
1118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1119
+  (0.1ms) SAVEPOINT active_record_1
1120
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:36:51.130640"], ["updated_at", "2015-09-12 02:36:51.130640"]]
1121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1122
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
1123
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
1124
+  (0.7ms) rollback transaction
1125
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1126
+  (1.9ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1127
+  (1.0ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1128
+  (1.1ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1129
+  (0.8ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1130
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1131
+  (0.1ms) select sqlite_version(*)
1132
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1133
+  (0.1ms) SELECT version FROM "schema_migrations"
1134
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
1135
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
1136
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
1137
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
1138
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1139
+  (0.1ms) begin transaction
1140
+  (0.1ms) rollback transaction
1141
+  (0.1ms) begin transaction
1142
+  (0.0ms) rollback transaction
1143
+  (0.1ms) begin transaction
1144
+  (0.1ms) rollback transaction
1145
+  (0.1ms) begin transaction
1146
+  (0.0ms) rollback transaction
1147
+  (0.0ms) begin transaction
1148
+  (0.1ms) SAVEPOINT active_record_1
1149
+ SQL (0.5ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:37:31.678340"], ["updated_at", "2015-09-12 02:37:31.678340"]]
1150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1151
+  (0.1ms) SAVEPOINT active_record_1
1152
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.687714"], ["updated_at", "2015-09-12 02:37:31.687714"]]
1153
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1154
+ Plant Load (0.3ms) SELECT "plants".* FROM "plants" WHERE "plants"."id" = ? LIMIT 1 [["id", 1]]
1155
+  (0.7ms) rollback transaction
1156
+  (0.1ms) begin transaction
1157
+  (0.1ms) SAVEPOINT active_record_1
1158
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.708297"], ["updated_at", "2015-09-12 02:37:31.708297"]]
1159
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1160
+  (0.1ms) SAVEPOINT active_record_1
1161
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "eats_id", "eats_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["eats_id", 1], ["eats_type", "Animal"], ["created_at", "2015-09-12 02:37:31.710774"], ["updated_at", "2015-09-12 02:37:31.710774"]]
1162
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1163
+  (0.6ms) rollback transaction
1164
+  (0.1ms) begin transaction
1165
+  (0.1ms) SAVEPOINT active_record_1
1166
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.715423"], ["updated_at", "2015-09-12 02:37:31.715423"]]
1167
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1168
+  (0.8ms) rollback transaction
1169
+  (0.1ms) begin transaction
1170
+  (0.1ms) SAVEPOINT active_record_1
1171
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.721372"], ["updated_at", "2015-09-12 02:37:31.721372"]]
1172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1173
+  (0.1ms) SAVEPOINT active_record_1
1174
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "eats_id", "eats_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["eats_id", 1], ["eats_type", "Animal"], ["created_at", "2015-09-12 02:37:31.724409"], ["updated_at", "2015-09-12 02:37:31.724409"]]
1175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1176
+  (1.4ms) rollback transaction
1177
+  (0.1ms) begin transaction
1178
+  (0.2ms) SAVEPOINT active_record_1
1179
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:37:31.731663"], ["updated_at", "2015-09-12 02:37:31.731663"]]
1180
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1181
+  (0.1ms) SAVEPOINT active_record_1
1182
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.734761"], ["updated_at", "2015-09-12 02:37:31.734761"]]
1183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1184
+  (0.1ms) SAVEPOINT active_record_1
1185
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:37:31.737103"], ["updated_at", "2015-09-12 02:37:31.737103"]]
1186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1187
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
1188
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
1189
+  (0.7ms) rollback transaction
1190
+  (0.2ms) begin transaction
1191
+  (0.1ms) SAVEPOINT active_record_1
1192
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:37:31.772859"], ["updated_at", "2015-09-12 02:37:31.772859"]]
1193
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1194
+  (0.1ms) SAVEPOINT active_record_1
1195
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.775631"], ["updated_at", "2015-09-12 02:37:31.775631"]]
1196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1197
+  (0.1ms) SAVEPOINT active_record_1
1198
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:37:31.778364"], ["updated_at", "2015-09-12 02:37:31.778364"]]
1199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1200
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
1201
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
1202
+  (0.9ms) rollback transaction
1203
+  (0.1ms) begin transaction
1204
+  (0.1ms) SAVEPOINT active_record_1
1205
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:37:31.794493"], ["updated_at", "2015-09-12 02:37:31.794493"]]
1206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1207
+  (0.1ms) SAVEPOINT active_record_1
1208
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.797266"], ["updated_at", "2015-09-12 02:37:31.797266"]]
1209
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1210
+  (0.1ms) SAVEPOINT active_record_1
1211
+ SQL (0.4ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:37:31.800095"], ["updated_at", "2015-09-12 02:37:31.800095"]]
1212
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1213
+  (0.1ms) SAVEPOINT active_record_1
1214
+ SQL (0.4ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-12 02:37:31.804580"], ["id", 1]]
1215
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1216
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
1217
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
1218
+  (1.2ms) rollback transaction
1219
+  (0.1ms) begin transaction
1220
+  (0.1ms) SAVEPOINT active_record_1
1221
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:37:31.819785"], ["updated_at", "2015-09-12 02:37:31.819785"]]
1222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1223
+  (0.0ms) SAVEPOINT active_record_1
1224
+ SQL (6.8ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.822431"], ["updated_at", "2015-09-12 02:37:31.822431"]]
1225
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1226
+  (0.1ms) SAVEPOINT active_record_1
1227
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:37:31.832430"], ["updated_at", "2015-09-12 02:37:31.832430"]]
1228
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1229
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
1230
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
1231
+  (6.0ms) rollback transaction
1232
+  (0.1ms) begin transaction
1233
+  (0.1ms) SAVEPOINT active_record_1
1234
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-12 02:37:31.851077"], ["updated_at", "2015-09-12 02:37:31.851077"]]
1235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1236
+  (0.1ms) SAVEPOINT active_record_1
1237
+ SQL (0.6ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-12 02:37:31.853763"], ["updated_at", "2015-09-12 02:37:31.853763"]]
1238
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1239
+  (0.1ms) SAVEPOINT active_record_1
1240
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-12 02:37:31.856717"], ["updated_at", "2015-09-12 02:37:31.856717"]]
1241
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1242
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
1243
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
1244
+  (0.8ms) rollback transaction
1245
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1246
+  (1.7ms) CREATE TABLE "animals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "eats_id" integer, "eats_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1247
+  (1.1ms) CREATE TABLE "planets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "stars_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1248
+  (1.1ms) CREATE TABLE "plants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "scientific_name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1249
+  (1.9ms) CREATE TABLE "stars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1250
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1251
+  (0.1ms) select sqlite_version(*)
1252
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1253
+  (0.2ms) SELECT version FROM "schema_migrations"
1254
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912015008')
1255
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212009')
1256
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150911212401')
1257
+  (6.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150912014900')
1258
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1259
+  (0.2ms) begin transaction
1260
+  (0.2ms) SAVEPOINT active_record_1
1261
+ SQL (0.9ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-14 19:52:34.886895"], ["updated_at", "2015-09-14 19:52:34.886895"]]
1262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1263
+  (0.1ms) SAVEPOINT active_record_1
1264
+ SQL (1.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:34.892990"], ["updated_at", "2015-09-14 19:52:34.892990"]]
1265
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1266
+  (0.1ms) SAVEPOINT active_record_1
1267
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-14 19:52:34.970775"], ["updated_at", "2015-09-14 19:52:34.970775"]]
1268
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1269
+ Animal Load (0.4ms) SELECT "animals".* FROM "animals"
1270
+ Plant Load (0.2ms) SELECT "plants".* FROM "plants"
1271
+  (1.0ms) rollback transaction
1272
+  (0.1ms) begin transaction
1273
+  (0.7ms) SAVEPOINT active_record_1
1274
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-14 19:52:35.074864"], ["updated_at", "2015-09-14 19:52:35.074864"]]
1275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1276
+  (0.1ms) SAVEPOINT active_record_1
1277
+ SQL (1.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:35.087980"], ["updated_at", "2015-09-14 19:52:35.087980"]]
1278
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1279
+  (0.1ms) SAVEPOINT active_record_1
1280
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-14 19:52:35.092116"], ["updated_at", "2015-09-14 19:52:35.092116"]]
1281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1282
+ Animal Load (0.7ms) SELECT "animals".* FROM "animals"
1283
+ Plant Load (0.4ms) SELECT "plants".* FROM "plants"
1284
+  (0.9ms) rollback transaction
1285
+  (0.1ms) begin transaction
1286
+  (0.1ms) SAVEPOINT active_record_1
1287
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-14 19:52:35.109972"], ["updated_at", "2015-09-14 19:52:35.109972"]]
1288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1289
+  (0.1ms) SAVEPOINT active_record_1
1290
+ SQL (4.9ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:35.123010"], ["updated_at", "2015-09-14 19:52:35.123010"]]
1291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1292
+  (0.1ms) SAVEPOINT active_record_1
1293
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-14 19:52:35.140607"], ["updated_at", "2015-09-14 19:52:35.140607"]]
1294
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1295
+ Animal Load (0.1ms) SELECT "animals".* FROM "animals"
1296
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
1297
+  (1.1ms) rollback transaction
1298
+  (0.3ms) begin transaction
1299
+  (0.1ms) SAVEPOINT active_record_1
1300
+ SQL (6.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-14 19:52:35.177922"], ["updated_at", "2015-09-14 19:52:35.177922"]]
1301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1302
+  (0.1ms) SAVEPOINT active_record_1
1303
+ SQL (0.5ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:35.190630"], ["updated_at", "2015-09-14 19:52:35.190630"]]
1304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1305
+  (0.1ms) SAVEPOINT active_record_1
1306
+ SQL (0.2ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-14 19:52:35.193774"], ["updated_at", "2015-09-14 19:52:35.193774"]]
1307
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1308
+  (0.1ms) SAVEPOINT active_record_1
1309
+ SQL (0.7ms) UPDATE "animals" SET "eats_id" = ?, "eats_type" = ?, "updated_at" = ? WHERE "animals"."id" = ? [["eats_id", 2], ["eats_type", "Animal"], ["updated_at", "2015-09-14 19:52:35.211358"], ["id", 1]]
1310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1311
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
1312
+ Plant Load (0.1ms) SELECT "plants".* FROM "plants"
1313
+  (3.0ms) rollback transaction
1314
+  (0.5ms) begin transaction
1315
+  (0.7ms) SAVEPOINT active_record_1
1316
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["created_at", "2015-09-14 19:52:35.249018"], ["updated_at", "2015-09-14 19:52:35.249018"]]
1317
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1318
+  (0.2ms) SAVEPOINT active_record_1
1319
+ SQL (1.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:35.259546"], ["updated_at", "2015-09-14 19:52:35.259546"]]
1320
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1321
+  (3.4ms) SAVEPOINT active_record_1
1322
+ SQL (0.1ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-14 19:52:35.270554"], ["updated_at", "2015-09-14 19:52:35.270554"]]
1323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1324
+ Animal Load (0.2ms) SELECT "animals".* FROM "animals"
1325
+ Plant Load (0.5ms) SELECT "plants".* FROM "plants"
1326
+  (0.7ms) rollback transaction
1327
+  (0.2ms) begin transaction
1328
+  (0.2ms) rollback transaction
1329
+  (0.1ms) begin transaction
1330
+  (0.1ms) rollback transaction
1331
+  (0.1ms) begin transaction
1332
+  (0.0ms) rollback transaction
1333
+  (0.0ms) begin transaction
1334
+  (1.6ms) rollback transaction
1335
+  (0.4ms) begin transaction
1336
+  (0.1ms) SAVEPOINT active_record_1
1337
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:35.300332"], ["updated_at", "2015-09-14 19:52:35.300332"]]
1338
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1339
+  (0.1ms) SAVEPOINT active_record_1
1340
+ SQL (1.4ms) INSERT INTO "animals" ("name", "scientific_name", "eats_id", "eats_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["eats_id", 1], ["eats_type", "Animal"], ["created_at", "2015-09-14 19:52:35.304591"], ["updated_at", "2015-09-14 19:52:35.304591"]]
1341
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1342
+  (0.6ms) rollback transaction
1343
+  (0.0ms) begin transaction
1344
+  (0.0ms) SAVEPOINT active_record_1
1345
+ SQL (0.4ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:35.311019"], ["updated_at", "2015-09-14 19:52:35.311019"]]
1346
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1347
+  (1.2ms) rollback transaction
1348
+  (0.5ms) begin transaction
1349
+  (0.1ms) SAVEPOINT active_record_1
1350
+ SQL (0.3ms) INSERT INTO "plants" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Fine Thatching Grass"], ["scientific_name", "Hyparrhenia filipendula"], ["created_at", "2015-09-14 19:52:35.319802"], ["updated_at", "2015-09-14 19:52:35.319802"]]
1351
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1352
+  (0.0ms) SAVEPOINT active_record_1
1353
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:35.322107"], ["updated_at", "2015-09-14 19:52:35.322107"]]
1354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1355
+ Plant Load (0.3ms) SELECT "plants".* FROM "plants" WHERE "plants"."id" = ? LIMIT 1 [["id", 1]]
1356
+  (2.1ms) rollback transaction
1357
+  (0.1ms) begin transaction
1358
+  (0.0ms) SAVEPOINT active_record_1
1359
+ SQL (0.3ms) INSERT INTO "animals" ("name", "scientific_name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Zebra"], ["scientific_name", "Equus zebra"], ["created_at", "2015-09-14 19:52:35.345521"], ["updated_at", "2015-09-14 19:52:35.345521"]]
1360
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1361
+  (0.0ms) SAVEPOINT active_record_1
1362
+ SQL (0.7ms) INSERT INTO "animals" ("name", "scientific_name", "eats_id", "eats_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheetah"], ["scientific_name", "Acinonyx jubatus"], ["eats_id", 1], ["eats_type", "Animal"], ["created_at", "2015-09-14 19:52:35.347498"], ["updated_at", "2015-09-14 19:52:35.347498"]]
1363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1364
+  (2.6ms) rollback transaction