seed_migrations 0.0.3 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6e5f2992031b8c964a5b4fa11c357a4dc49e02facaf8f0014ca2f949dcbd89a0
4
+ data.tar.gz: 3aa18ba2436d18254bae5d771d3c138f8747a6fc6c1f43bfbd75118dbc91ef79
5
+ SHA512:
6
+ metadata.gz: 496e21077520ae3c539791b1da0b9d0d9a126c20eb84abaa5702c978957a19d63542f230dbee92839e1c303bcb902de4c3e0c311cf2fea1f46c6de1dcfaf8996
7
+ data.tar.gz: 3cca315d5325384c3a727f4f2aa3957c614e75daaa6e2cb4509e15dd95fd9921d134d6cd1503e545cd8d99008e19755690bab8725cd2a20832115f95dba18dc8
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/seed_migrations.png)](http://badge.fury.io/rb/seed_migrations)
2
+
1
3
  Welcome to SeedMigrations
2
4
  =========================
3
5
 
data/Rakefile CHANGED
@@ -32,6 +32,7 @@ Rake::TestTask.new(:test) do |t|
32
32
  t.libs << 'test'
33
33
  t.pattern = 'test/**/*_test.rb'
34
34
  t.verbose = false
35
+ t.warning = false
35
36
  end
36
37
 
37
38
 
@@ -4,4 +4,4 @@ class <%= file_name.camelize %> < ActiveRecord::SeedMigration
4
4
 
5
5
  end
6
6
 
7
- end
7
+ end
@@ -1,60 +1,64 @@
1
1
  class ActiveRecord::SeedMigration < ActiveRecord::Base
2
2
 
3
- def self.load_seeds
4
- puts 'Loading all seeds'
5
- ensure_table_is_set
6
- Dir.chdir(File.join(Rails.root, "db", "seed"))
7
- seeds = Dir.glob('*.rb').sort.each do |file_name|
8
- if seed_name = file_name.match(/[0-9]+_(.*).rb/).captures.first
9
- unless find_by_name(file_name.chomp('.rb'))
10
- ActiveRecord::Base.transaction do
11
- puts "- Loading data from #{file_name}"
12
- load File.join(Rails.root, "db", "seed", file_name)
13
- seed_class = begin
14
- seed_name.camelize.constantize
15
- rescue NameError => n
16
- puts 'No appropriate class specified in the file! Skipping it!'
3
+ class << self
4
+
5
+ def load_seeds
6
+ puts 'Loading all seeds'
7
+ ensure_table_is_set
8
+ Dir.chdir(File.join(Rails.root, "db", "seed"))
9
+ Dir.glob('*.rb').sort.each do |file_name|
10
+ if seed_name = file_name.match(/[0-9]+_(.*).rb/).captures.first
11
+ unless find_by_name(file_name.chomp('.rb'))
12
+ ActiveRecord::Base.transaction do
13
+ puts "- Loading data from #{file_name}"
14
+ load File.join(Rails.root, "db", "seed", file_name)
15
+ seed_class = begin
16
+ seed_name.camelize.constantize
17
+ rescue NameError
18
+ puts 'No appropriate class specified in the file! Skipping it!'
19
+ end
20
+ seed_class.up if seed_class
21
+ seed = new
22
+ seed.name = file_name.chomp('.rb')
23
+ seed.save!
17
24
  end
18
- seed_class.up if seed_class
19
- seed = new
20
- seed.name = file_name.chomp('.rb')
21
- seed.save!
22
25
  end
23
26
  end
24
27
  end
25
28
  end
26
- end
27
29
 
28
- def self.reload_last_seed
29
- puts 'Reloading last seed'
30
- ensure_table_is_set
31
- if last_seeding = last
32
- seed_name = last_seeding.name.match(/[0-9]+_(.*)/).captures.first
33
- ActiveRecord::Base.transaction do
34
- puts "- Loading data from #{last_seeding.name}.rb"
35
- load File.join(Rails.root, "db", "seed", last_seeding.name + '.rb')
36
- seed_class = begin
37
- seed_name.camelize.constantize
38
- rescue NameError => n
39
- puts 'No appropriate class specified in the file! Skipping it!'
30
+ def reload_last_seed
31
+ puts 'Reloading last seed'
32
+ ensure_table_is_set
33
+ if last_seeding = last
34
+ seed_name = last_seeding.name.match(/[0-9]+_(.*)/).captures.first
35
+ ActiveRecord::Base.transaction do
36
+ puts "- Loading data from #{last_seeding.name}.rb"
37
+ load File.join(Rails.root, "db", "seed", last_seeding.name + '.rb')
38
+ seed_class = begin
39
+ seed_name.camelize.constantize
40
+ rescue NameError
41
+ puts 'No appropriate class specified in the file! Skipping it!'
42
+ end
43
+ seed_class.up if seed_class
40
44
  end
41
- seed_class.up if seed_class
42
45
  end
43
46
  end
44
- end
45
47
 
46
- private
48
+ private
47
49
 
48
- def self.ensure_table_is_set
49
- create_seed_migrations_table unless ActiveRecord::Migration.table_exists?("seed_migrations")
50
- end
50
+ def ensure_table_is_set
51
+ create_seed_migrations_table unless ActiveRecord::Migration.data_source_exists?("seed_migrations")
52
+ end
51
53
 
52
- def self.create_seed_migrations_table
53
- ActiveRecord::Migration.create_table :seed_migrations do |t|
54
- t.string :name, :null => false
55
- t.timestamps
54
+ def create_seed_migrations_table
55
+ ActiveRecord::Migration.create_table :seed_migrations do |t|
56
+ t.string :name, :null => false
57
+ t.timestamps
58
+ end
59
+ ActiveRecord::Migration.add_index("seed_migrations", :name, :unique => true)
56
60
  end
57
- ActiveRecord::Migration.add_index("seed_migrations", :name, :unique => true)
61
+
58
62
  end
59
63
 
60
64
  end
@@ -1,3 +1,3 @@
1
1
  module SeedMigrations
2
- VERSION = "0.0.3"
2
+ VERSION = "1.4.0"
3
3
  end
@@ -40,12 +40,6 @@ module Dummy
40
40
  # like if you have constraints or database-specific column types
41
41
  # config.active_record.schema_format = :sql
42
42
 
43
- # Enforce whitelist mode for mass assignment.
44
- # This will create an empty whitelist of attributes available for mass-assignment for all models
45
- # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
46
- # parameters by using an attr_accessible or attr_protected declaration.
47
- config.active_record.whitelist_attributes = true
48
-
49
43
  # Enable the asset pipeline
50
44
  config.assets.enabled = true
51
45
 
@@ -6,8 +6,7 @@ Dummy::Application.configure do
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
9
+ config.eager_load = false
11
10
 
12
11
  # Show full error reports and disable caching
13
12
  config.consider_all_requests_local = true
@@ -22,9 +21,6 @@ Dummy::Application.configure do
22
21
  # Only use best-standards-support built into browsers
23
22
  config.action_dispatch.best_standards_support = :builtin
24
23
 
25
- # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
27
-
28
24
  # Log the query plan for queries taking more than this (works
29
25
  # with SQLite, MySQL, and PostgreSQL)
30
26
  config.active_record.auto_explain_threshold_in_seconds = 0.5
@@ -3,6 +3,8 @@ Dummy::Application.configure do
3
3
 
4
4
  # Code is not reloaded between requests
5
5
  config.cache_classes = true
6
+
7
+ config.eager_load = true
6
8
 
7
9
  # Full error reports are disabled and caching is turned on
8
10
  config.consider_all_requests_local = false
@@ -7,10 +7,12 @@ Dummy::Application.configure do
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
9
 
10
+ config.eager_load = false
11
+
10
12
  # Configure static asset server for tests with Cache-Control for performance
11
13
  config.serve_static_assets = true
12
- config.static_cache_control = "public, max-age=3600"
13
-
14
+ config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }
15
+
14
16
  # Log error messages when you accidentally call methods on nil
15
17
  config.whiny_nils = true
16
18
 
@@ -29,9 +31,6 @@ Dummy::Application.configure do
29
31
  # ActionMailer::Base.deliveries array.
30
32
  config.action_mailer.delivery_method = :test
31
33
 
32
- # Raise exception on mass assignment protection for Active Record models
33
- config.active_record.mass_assignment_sanitizer = :strict
34
-
35
34
  # Print deprecation notices to the stderr
36
35
  config.active_support.deprecation = :stderr
37
36
  end
@@ -1,581 +1,1004 @@
1
- Connecting to database specified by database.yml
2
-  (0.3ms) begin transaction
3
-  (0.1ms) rollback transaction
4
-  (0.1ms) begin transaction
5
-  (0.1ms) SELECT COUNT(*) FROM "plants"
6
-  (0.0ms) rollback transaction
7
-  (0.0ms) begin transaction
8
-  (0.1ms) SELECT COUNT(*) FROM "plants" 
9
-  (0.0ms) rollback transaction
10
-  (0.0ms) begin transaction
11
-  (0.1ms) SELECT COUNT(*) FROM "plants"
12
-  (0.0ms) rollback transaction
13
- Connecting to database specified by database.yml
14
-  (0.3ms) begin transaction
15
-  (0.1ms) rollback transaction
16
-  (0.1ms) begin transaction
17
-  (0.1ms) SELECT COUNT(*) FROM "plants"
18
-  (0.1ms) select sqlite_version(*)
19
-  (0.6ms) CREATE TABLE "seedings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
20
-  (0.0ms) PRAGMA index_list("seedings")
21
-  (0.4ms) CREATE UNIQUE INDEX "index_seedings_on_name" ON "seedings" ("name")
22
-  (1.0ms) rollback transaction
23
-  (0.0ms) begin transaction
24
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
25
-  (0.2ms) CREATE TABLE "seedings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
26
-  (0.0ms) PRAGMA index_list("seedings")
27
-  (0.3ms) CREATE UNIQUE INDEX "index_seedings_on_name" ON "seedings" ("name")
28
-  (0.6ms) rollback transaction
29
-  (0.0ms) begin transaction
30
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
31
-  (0.3ms) CREATE TABLE "seedings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
32
-  (0.0ms) PRAGMA index_list("seedings")
33
-  (0.3ms) CREATE UNIQUE INDEX "index_seedings_on_name" ON "seedings" ("name")
34
-  (0.7ms) rollback transaction
35
- Connecting to database specified by database.yml
36
-  (0.3ms) begin transaction
37
-  (0.2ms) rollback transaction
38
-  (0.1ms) begin transaction
39
-  (0.1ms) SELECT COUNT(*) FROM "plants"
40
-  (0.1ms) select sqlite_version(*)
41
-  (0.4ms) CREATE TABLE "seedings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
42
-  (0.0ms) PRAGMA index_list("seedings")
43
-  (0.7ms) CREATE UNIQUE INDEX "index_seedings_on_name" ON "seedings" ("name")
44
-  (0.9ms) rollback transaction
45
-  (0.0ms) begin transaction
46
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
47
-  (0.3ms) CREATE TABLE "seedings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
48
-  (0.0ms) PRAGMA index_list("seedings")
49
-  (0.3ms) CREATE UNIQUE INDEX "index_seedings_on_name" ON "seedings" ("name")
50
-  (0.7ms) rollback transaction
51
-  (0.0ms) begin transaction
52
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
53
-  (0.4ms) CREATE TABLE "seedings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
54
-  (0.1ms) PRAGMA index_list("seedings")
55
-  (0.9ms) CREATE UNIQUE INDEX "index_seedings_on_name" ON "seedings" ("name")
56
-  (0.8ms) rollback transaction
57
- Connecting to database specified by database.yml
58
-  (0.3ms) begin transaction
59
-  (0.1ms) rollback transaction
60
-  (0.0ms) begin transaction
61
-  (0.1ms) SELECT COUNT(*) FROM "plants"
62
-  (0.1ms) select sqlite_version(*)
63
-  (0.7ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
64
-  (0.0ms) PRAGMA index_list("seed_migrations")
65
-  (0.5ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
66
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
67
-  (0.0ms) SAVEPOINT active_record_1
68
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
69
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
70
-  (0.9ms) rollback transaction
71
-  (0.0ms) begin transaction
72
-  (0.3ms) SELECT COUNT(*) FROM "plants" 
73
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
74
-  (0.0ms) PRAGMA index_list("seed_migrations")
75
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
76
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
77
-  (0.0ms) SAVEPOINT active_record_1
78
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
79
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
80
-  (0.5ms) rollback transaction
81
-  (0.0ms) begin transaction
82
-  (0.3ms) SELECT COUNT(*) FROM "plants" 
83
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
84
-  (0.0ms) PRAGMA index_list("seed_migrations")
85
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
86
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
87
-  (0.0ms) SAVEPOINT active_record_1
88
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
89
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
90
-  (0.7ms) rollback transaction
91
- Connecting to database specified by database.yml
92
-  (0.3ms) begin transaction
93
-  (0.1ms) rollback transaction
94
-  (0.0ms) begin transaction
95
-  (0.1ms) SELECT COUNT(*) FROM "plants"
96
-  (0.2ms) select sqlite_version(*)
97
-  (0.6ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
98
-  (0.0ms) PRAGMA index_list("seed_migrations")
99
-  (0.5ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
100
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
101
-  (0.0ms) SAVEPOINT active_record_1
102
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
103
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
104
-  (1.0ms) rollback transaction
105
-  (0.0ms) begin transaction
106
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
107
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
108
-  (0.0ms) PRAGMA index_list("seed_migrations")
109
-  (0.5ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
110
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
111
-  (0.0ms) SAVEPOINT active_record_1
112
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
113
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
114
-  (0.7ms) rollback transaction
115
-  (0.0ms) begin transaction
116
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
117
-  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
118
-  (0.0ms) PRAGMA index_list("seed_migrations")
119
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
120
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
121
-  (0.0ms) SAVEPOINT active_record_1
122
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
123
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
124
-  (0.6ms) rollback transaction
125
- Connecting to database specified by database.yml
126
-  (0.3ms) begin transaction
127
-  (0.1ms) rollback transaction
128
-  (0.0ms) begin transaction
129
-  (0.1ms) SELECT COUNT(*) FROM "plants"
130
-  (0.1ms) select sqlite_version(*)
131
-  (0.5ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
132
-  (0.1ms) PRAGMA index_list("seed_migrations")
133
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
134
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
135
-  (0.0ms) SAVEPOINT active_record_1
136
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
137
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
138
-  (0.7ms) rollback transaction
139
-  (0.0ms) begin transaction
140
-  (0.3ms) SELECT COUNT(*) FROM "plants" 
141
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
142
-  (0.0ms) PRAGMA index_list("seed_migrations")
143
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
144
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
145
-  (0.0ms) SAVEPOINT active_record_1
146
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
147
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
148
-  (0.8ms) rollback transaction
149
-  (0.0ms) begin transaction
150
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
151
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
152
-  (0.0ms) PRAGMA index_list("seed_migrations")
153
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
154
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
155
-  (0.0ms) SAVEPOINT active_record_1
156
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
157
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
158
-  (0.8ms) rollback transaction
159
- Connecting to database specified by database.yml
160
-  (0.4ms) begin transaction
161
-  (0.1ms) rollback transaction
162
-  (0.1ms) begin transaction
163
-  (0.1ms) SELECT COUNT(*) FROM "plants"
164
-  (0.1ms) select sqlite_version(*)
165
-  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
166
-  (0.0ms) PRAGMA index_list("seed_migrations")
167
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
168
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
169
-  (0.0ms) SAVEPOINT active_record_1
170
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
171
- SQL (4.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00]]
172
-  (0.1ms) RELEASE SAVEPOINT active_record_1
173
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
174
-  (0.0ms) SAVEPOINT active_record_1
175
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
176
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00]]
177
-  (0.1ms) RELEASE SAVEPOINT active_record_1
178
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
179
-  (0.0ms) SAVEPOINT active_record_1
180
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
181
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
182
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
183
-  (0.0ms) SELECT COUNT(*) FROM "plants"
184
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
185
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
186
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
187
-  (0.0ms) SAVEPOINT active_record_1
188
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
189
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
190
-  (0.1ms) SELECT COUNT(*) FROM "plants" 
191
-  (0.7ms) rollback transaction
192
-  (0.0ms) begin transaction
193
-  (0.2ms) SELECT COUNT(*) FROM "plants"
194
-  (0.2ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
195
-  (0.0ms) PRAGMA index_list("seed_migrations")
196
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
197
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
198
-  (0.0ms) SAVEPOINT active_record_1
199
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
200
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00]]
201
-  (0.0ms) RELEASE SAVEPOINT active_record_1
202
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
203
-  (0.0ms) SAVEPOINT active_record_1
204
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
205
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00]]
206
-  (0.0ms) RELEASE SAVEPOINT active_record_1
207
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
208
-  (0.0ms) SAVEPOINT active_record_1
209
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
210
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
211
-  (0.2ms) SELECT COUNT(*) FROM "plants"
212
-  (7.1ms) rollback transaction
213
-  (0.1ms) begin transaction
214
-  (0.3ms) SELECT COUNT(*) FROM "plants" 
215
-  (0.6ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
216
-  (0.0ms) PRAGMA index_list("seed_migrations")
217
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
218
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
219
-  (0.0ms) SAVEPOINT active_record_1
220
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
221
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00]]
222
-  (0.0ms) RELEASE SAVEPOINT active_record_1
223
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
224
-  (0.0ms) SAVEPOINT active_record_1
225
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
226
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 15:41:54 UTC +00:00]]
227
-  (0.1ms) RELEASE SAVEPOINT active_record_1
228
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
229
-  (0.0ms) SAVEPOINT active_record_1
230
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
231
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
232
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
233
-  (0.0ms) SELECT COUNT(*) FROM "plants"
234
-  (0.8ms) rollback transaction
235
- Connecting to database specified by database.yml
236
-  (0.3ms) begin transaction
237
-  (0.1ms) rollback transaction
238
-  (0.0ms) begin transaction
239
-  (0.1ms) SELECT COUNT(*) FROM "plants"
240
-  (0.1ms) select sqlite_version(*)
241
-  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
242
-  (0.0ms) PRAGMA index_list("seed_migrations")
243
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
244
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
245
-  (0.0ms) SAVEPOINT active_record_1
246
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
247
- SQL (3.9ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00]]
248
-  (0.1ms) RELEASE SAVEPOINT active_record_1
249
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
250
-  (0.0ms) SAVEPOINT active_record_1
251
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
252
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00]]
253
-  (0.1ms) RELEASE SAVEPOINT active_record_1
254
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
255
-  (0.0ms) SAVEPOINT active_record_1
256
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
257
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
258
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
259
-  (0.0ms) SELECT COUNT(*) FROM "plants"
260
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
261
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
262
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
263
-  (0.0ms) SAVEPOINT active_record_1
264
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
265
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
266
-  (0.1ms) SELECT COUNT(*) FROM "plants" 
267
-  (0.9ms) rollback transaction
268
-  (0.0ms) begin transaction
269
-  (0.2ms) SELECT COUNT(*) FROM "plants"
270
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
271
-  (0.0ms) PRAGMA index_list("seed_migrations")
272
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
273
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
274
-  (0.0ms) SAVEPOINT active_record_1
275
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
276
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00]]
277
-  (0.1ms) RELEASE SAVEPOINT active_record_1
278
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
279
-  (0.0ms) SAVEPOINT active_record_1
280
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
281
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00]]
282
-  (0.1ms) RELEASE SAVEPOINT active_record_1
283
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
284
-  (0.0ms) SAVEPOINT active_record_1
285
- SQL (0.3ms) INSERT INTO "plants" VALUES(NULL)
286
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
287
-  (0.2ms) SELECT COUNT(*) FROM "plants"
288
-  (0.8ms) rollback transaction
289
-  (0.0ms) begin transaction
290
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
291
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
292
-  (0.0ms) PRAGMA index_list("seed_migrations")
293
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
294
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
295
-  (0.0ms) SAVEPOINT active_record_1
296
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
297
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00]]
298
-  (0.1ms) RELEASE SAVEPOINT active_record_1
299
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
300
-  (0.0ms) SAVEPOINT active_record_1
301
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
302
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 15:42:08 UTC +00:00]]
303
-  (0.1ms) RELEASE SAVEPOINT active_record_1
304
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
305
-  (0.0ms) SAVEPOINT active_record_1
306
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
307
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
308
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
309
-  (0.0ms) SELECT COUNT(*) FROM "plants"
310
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT 1
311
-  (0.0ms) SAVEPOINT active_record_1
312
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
313
-  (0.0ms) RELEASE SAVEPOINT active_record_1
314
-  (0.0ms) SELECT COUNT(*) FROM "plants" 
315
-  (0.7ms) rollback transaction
316
- Connecting to database specified by database.yml
317
-  (0.3ms) begin transaction
318
-  (0.1ms) rollback transaction
319
-  (0.0ms) begin transaction
320
-  (0.1ms) SELECT COUNT(*) FROM "plants"
321
-  (0.1ms) select sqlite_version(*)
322
-  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
323
-  (0.0ms) PRAGMA index_list("seed_migrations")
324
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
325
-  (2.7ms) rollback transaction
326
-  (0.0ms) begin transaction
327
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
328
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
329
-  (0.0ms) PRAGMA index_list("seed_migrations")
330
-  (0.5ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
331
-  (2.3ms) rollback transaction
332
-  (0.1ms) begin transaction
333
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
334
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
335
-  (0.0ms) PRAGMA index_list("seed_migrations")
336
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
337
-  (0.5ms) rollback transaction
338
- Connecting to database specified by database.yml
339
-  (0.4ms) begin transaction
340
-  (0.1ms) rollback transaction
341
-  (0.0ms) begin transaction
342
-  (0.1ms) SELECT COUNT(*) FROM "plants"
343
-  (0.1ms) select sqlite_version(*)
344
-  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
345
-  (0.0ms) PRAGMA index_list("seed_migrations")
346
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
347
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
348
-  (0.0ms) SAVEPOINT active_record_1
349
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
350
- SQL (4.9ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00]]
351
-  (0.1ms) RELEASE SAVEPOINT active_record_1
352
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
353
-  (0.0ms) SAVEPOINT active_record_1
354
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
355
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00]]
356
-  (0.1ms) RELEASE SAVEPOINT active_record_1
357
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
358
-  (0.0ms) SAVEPOINT active_record_1
359
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
360
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
361
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
362
-  (0.0ms) SELECT COUNT(*) FROM "plants"
363
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
364
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
365
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
366
-  (0.0ms) SAVEPOINT active_record_1
367
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
368
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
369
-  (0.1ms) SELECT COUNT(*) FROM "plants" 
370
-  (0.9ms) rollback transaction
371
-  (0.0ms) begin transaction
372
-  (0.2ms) SELECT COUNT(*) FROM "plants"
373
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
374
-  (0.0ms) PRAGMA index_list("seed_migrations")
375
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
376
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
377
-  (0.0ms) SAVEPOINT active_record_1
378
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
379
- SQL (0.4ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00]]
380
-  (0.1ms) RELEASE SAVEPOINT active_record_1
381
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
382
-  (0.0ms) SAVEPOINT active_record_1
383
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
384
- SQL (0.4ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00]]
385
-  (0.1ms) RELEASE SAVEPOINT active_record_1
386
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
387
-  (0.0ms) SAVEPOINT active_record_1
388
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
389
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
390
-  (0.2ms) SELECT COUNT(*) FROM "plants"
391
-  (0.7ms) rollback transaction
392
-  (0.0ms) begin transaction
393
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
394
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
395
-  (0.0ms) PRAGMA index_list("seed_migrations")
396
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
397
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
398
-  (0.0ms) SAVEPOINT active_record_1
399
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
400
- SQL (0.4ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00]]
401
-  (0.1ms) RELEASE SAVEPOINT active_record_1
402
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
403
-  (0.0ms) SAVEPOINT active_record_1
404
- SQL (0.3ms) INSERT INTO "plants" VALUES(NULL)
405
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 16:50:55 UTC +00:00]]
406
-  (0.1ms) RELEASE SAVEPOINT active_record_1
407
- ActiveRecord::SeedMigration Load (0.7ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
408
-  (0.0ms) SAVEPOINT active_record_1
409
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
410
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
411
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
412
-  (0.0ms) SELECT COUNT(*) FROM "plants"
413
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT 1
414
-  (0.0ms) SAVEPOINT active_record_1
415
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
416
-  (0.0ms) RELEASE SAVEPOINT active_record_1
417
-  (0.0ms) SELECT COUNT(*) FROM "plants" 
418
-  (0.7ms) rollback transaction
419
- Connecting to database specified by database.yml
420
-  (0.3ms) begin transaction
421
-  (0.1ms) rollback transaction
422
-  (0.1ms) begin transaction
423
-  (0.1ms) SELECT COUNT(*) FROM "plants"
424
-  (0.1ms) select sqlite_version(*)
425
-  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
426
-  (0.0ms) PRAGMA index_list("seed_migrations")
427
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
428
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
429
-  (0.0ms) SAVEPOINT active_record_1
430
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
431
- SQL (4.0ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00]]
432
-  (0.1ms) RELEASE SAVEPOINT active_record_1
433
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
434
-  (0.0ms) SAVEPOINT active_record_1
435
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
436
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00]]
437
-  (0.1ms) RELEASE SAVEPOINT active_record_1
438
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
439
-  (0.0ms) SAVEPOINT active_record_1
440
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
441
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
442
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
443
-  (0.0ms) SELECT COUNT(*) FROM "plants"
444
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
445
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
446
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
447
-  (0.0ms) SAVEPOINT active_record_1
448
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
449
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
450
-  (0.1ms) SELECT COUNT(*) FROM "plants" 
451
-  (0.7ms) rollback transaction
452
-  (0.0ms) begin transaction
453
-  (0.2ms) SELECT COUNT(*) FROM "plants"
454
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
455
-  (0.0ms) PRAGMA index_list("seed_migrations")
456
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
457
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
458
-  (0.0ms) SAVEPOINT active_record_1
459
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
460
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00]]
461
-  (0.0ms) RELEASE SAVEPOINT active_record_1
462
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
463
-  (0.0ms) SAVEPOINT active_record_1
464
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
465
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00]]
466
-  (0.0ms) RELEASE SAVEPOINT active_record_1
467
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
468
-  (0.0ms) SAVEPOINT active_record_1
469
- SQL (0.3ms) INSERT INTO "plants" VALUES(NULL)
470
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
471
-  (0.4ms) SELECT COUNT(*) FROM "plants"
472
-  (1.9ms) rollback transaction
473
-  (0.1ms) begin transaction
474
-  (0.3ms) SELECT COUNT(*) FROM "plants" 
475
-  (0.5ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
476
-  (0.0ms) PRAGMA index_list("seed_migrations")
477
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
478
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
479
-  (0.0ms) SAVEPOINT active_record_1
480
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
481
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00]]
482
-  (0.0ms) RELEASE SAVEPOINT active_record_1
483
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
484
-  (0.0ms) SAVEPOINT active_record_1
485
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
486
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Tue, 05 Jun 2012 16:53:32 UTC +00:00]]
487
-  (0.0ms) RELEASE SAVEPOINT active_record_1
488
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
489
-  (0.0ms) SAVEPOINT active_record_1
490
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
491
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
492
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
493
-  (0.0ms) SELECT COUNT(*) FROM "plants"
494
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT 1
495
-  (0.0ms) SAVEPOINT active_record_1
496
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
497
-  (0.0ms) RELEASE SAVEPOINT active_record_1
498
-  (0.1ms) SELECT COUNT(*) FROM "plants" 
499
-  (0.7ms) rollback transaction
500
- Connecting to database specified by database.yml
501
-  (0.4ms) begin transaction
502
-  (0.1ms) rollback transaction
503
-  (0.1ms) begin transaction
504
-  (0.1ms) SELECT COUNT(*) FROM "plants"
505
-  (0.1ms) select sqlite_version(*)
506
-  (0.5ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
507
-  (0.0ms) PRAGMA index_list("seed_migrations")
508
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
509
- ActiveRecord::SeedMigration Load (0.3ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
510
-  (0.1ms) SAVEPOINT active_record_1
511
- SQL (0.6ms) INSERT INTO "plants" VALUES(NULL)
512
- SQL (57.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00]]
513
-  (0.1ms) RELEASE SAVEPOINT active_record_1
514
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
515
-  (0.0ms) SAVEPOINT active_record_1
516
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
517
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00]]
518
-  (0.1ms) RELEASE SAVEPOINT active_record_1
519
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
520
-  (0.0ms) SAVEPOINT active_record_1
521
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
522
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
523
-  (0.4ms) SELECT COUNT(*) FROM "plants" 
524
-  (0.1ms) SELECT COUNT(*) FROM "plants"
525
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
526
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
527
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
528
-  (0.0ms) SAVEPOINT active_record_1
529
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
530
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
531
-  (0.1ms) SELECT COUNT(*) FROM "plants" 
532
-  (0.8ms) rollback transaction
533
-  (0.0ms) begin transaction
534
-  (0.2ms) SELECT COUNT(*) FROM "plants"
535
-  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
536
-  (0.0ms) PRAGMA index_list("seed_migrations")
537
-  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
538
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
539
-  (0.0ms) SAVEPOINT active_record_1
540
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
541
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00]]
542
-  (0.1ms) RELEASE SAVEPOINT active_record_1
543
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
544
-  (0.0ms) SAVEPOINT active_record_1
545
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
546
- SQL (0.2ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00]]
547
-  (0.1ms) RELEASE SAVEPOINT active_record_1
548
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
549
-  (0.0ms) SAVEPOINT active_record_1
550
- SQL (0.1ms) INSERT INTO "plants" VALUES(NULL)
551
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
552
-  (0.2ms) SELECT COUNT(*) FROM "plants"
553
-  (10.9ms) rollback transaction
554
-  (0.4ms) begin transaction
555
-  (0.3ms) SELECT COUNT(*) FROM "plants" 
556
-  (0.5ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
557
-  (1.4ms) PRAGMA index_list("seed_migrations")
558
-  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
559
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133720_add_plant' LIMIT 1
560
-  (0.3ms) SAVEPOINT active_record_1
561
- SQL (0.3ms) INSERT INTO "plants" VALUES(NULL)
562
- SQL (0.4ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00], ["name", "20120604133720_add_plant"], ["updated_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00]]
563
-  (0.1ms) RELEASE SAVEPOINT active_record_1
564
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133721_add_one_more_plant' LIMIT 1
565
-  (0.0ms) SAVEPOINT active_record_1
566
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
567
- SQL (0.3ms) INSERT INTO "seed_migrations" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00], ["name", "20120604133721_add_one_more_plant"], ["updated_at", Mon, 11 Jun 2012 10:35:24 UTC +00:00]]
568
-  (0.2ms) RELEASE SAVEPOINT active_record_1
569
- ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = '20120604133722_add_one_more_plant_failing' LIMIT 1
570
-  (0.0ms) SAVEPOINT active_record_1
571
- SQL (0.2ms) INSERT INTO "plants" VALUES(NULL)
572
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
573
-  (0.2ms) SELECT COUNT(*) FROM "plants" 
574
-  (0.0ms) SELECT COUNT(*) FROM "plants"
575
- ActiveRecord::SeedMigration Load (0.2ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT 1
576
-  (0.0ms) SAVEPOINT active_record_1
577
- SQL (0.3ms) INSERT INTO "plants" VALUES(NULL)
578
-  (0.0ms) RELEASE SAVEPOINT active_record_1
579
-  (0.1ms) SELECT COUNT(*) FROM "plants" 
580
-  (0.7ms) rollback transaction
581
- Connecting to database specified by database.yml
1
+  (0.9ms) SELECT sqlite_version(*)
2
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
3
+  (0.0ms) SELECT sqlite_version(*)
4
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
+  (0.1ms) begin transaction
6
+ ----------------------------------------------------------------------
7
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
8
+ ----------------------------------------------------------------------
9
+  (0.1ms) rollback transaction
10
+  (0.0ms) begin transaction
11
+ --------------------------------------------------
12
+ SeedMigrationsTest: test_loading_seeds_is_possible
13
+ --------------------------------------------------
14
+  (0.1ms) SELECT COUNT(*) FROM "plants"
15
+  (0.4ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
16
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
17
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
18
+  (0.0ms) SAVEPOINT active_record_1
19
+ Plant Create (0.2ms) INSERT INTO "plants" DEFAULT VALUES
20
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:11:32.040064"], ["updated_at", "2019-04-25 10:11:32.040064"]]
21
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
23
+  (0.0ms) SAVEPOINT active_record_1
24
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
25
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:11:32.042364"], ["updated_at", "2019-04-25 10:11:32.042364"]]
26
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
28
+  (0.1ms) SAVEPOINT active_record_1
29
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
30
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
31
+  (0.1ms) SELECT COUNT(*) FROM "plants"
32
+  (0.3ms) rollback transaction
33
+  (0.0ms) begin transaction
34
+ ------------------------------------------------------------
35
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
36
+ ------------------------------------------------------------
37
+  (0.1ms) SELECT COUNT(*) FROM "plants"
38
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
39
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
40
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
41
+  (0.0ms) SAVEPOINT active_record_1
42
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
43
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:11:32.048359"], ["updated_at", "2019-04-25 10:11:32.048359"]]
44
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
46
+  (0.1ms) SAVEPOINT active_record_1
47
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
48
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:11:32.050235"], ["updated_at", "2019-04-25 10:11:32.050235"]]
49
+  (0.1ms) RELEASE SAVEPOINT active_record_1
50
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
51
+  (0.0ms) SAVEPOINT active_record_1
52
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
53
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
54
+  (0.2ms) SELECT COUNT(*) FROM "plants"
55
+  (0.1ms) SELECT COUNT(*) FROM "plants"
56
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
57
+  (0.0ms) SAVEPOINT active_record_1
58
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
59
+  (0.0ms) RELEASE SAVEPOINT active_record_1
60
+  (0.1ms) SELECT COUNT(*) FROM "plants"
61
+  (0.3ms) rollback transaction
62
+  (0.0ms) begin transaction
63
+ --------------------------------------------------------
64
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
65
+ --------------------------------------------------------
66
+  (0.2ms) SELECT COUNT(*) FROM "plants"
67
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
68
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
69
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
70
+  (0.0ms) SAVEPOINT active_record_1
71
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
72
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:11:32.059183"], ["updated_at", "2019-04-25 10:11:32.059183"]]
73
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
75
+  (0.0ms) SAVEPOINT active_record_1
76
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
77
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:11:32.060778"], ["updated_at", "2019-04-25 10:11:32.060778"]]
78
+  (0.0ms) RELEASE SAVEPOINT active_record_1
79
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
80
+  (0.0ms) SAVEPOINT active_record_1
81
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
82
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
83
+  (0.1ms) SELECT COUNT(*) FROM "plants"
84
+  (0.0ms) SELECT COUNT(*) FROM "plants"
85
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
86
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
87
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
88
+  (0.0ms) SAVEPOINT active_record_1
89
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
90
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
91
+  (0.1ms) SELECT COUNT(*) FROM "plants"
92
+  (0.2ms) rollback transaction
93
+  (0.7ms) SELECT sqlite_version(*)
94
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
95
+  (0.0ms) SELECT sqlite_version(*)
96
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
97
+  (0.1ms) begin transaction
98
+ ----------------------------------------------------------------------
99
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
100
+ ----------------------------------------------------------------------
101
+  (0.1ms) rollback transaction
102
+  (0.0ms) begin transaction
103
+ --------------------------------------------------------
104
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
105
+ --------------------------------------------------------
106
+  (0.1ms) SELECT COUNT(*) FROM "plants"
107
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
108
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
109
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
110
+  (0.0ms) SAVEPOINT active_record_1
111
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
112
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:13:37.790288"], ["updated_at", "2019-04-25 10:13:37.790288"]]
113
+  (0.1ms) RELEASE SAVEPOINT active_record_1
114
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
115
+  (0.0ms) SAVEPOINT active_record_1
116
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
117
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:13:37.792535"], ["updated_at", "2019-04-25 10:13:37.792535"]]
118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
119
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
120
+  (0.0ms) SAVEPOINT active_record_1
121
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
122
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
123
+  (0.1ms) SELECT COUNT(*) FROM "plants"
124
+  (0.1ms) SELECT COUNT(*) FROM "plants"
125
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
126
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
127
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
128
+  (0.0ms) SAVEPOINT active_record_1
129
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
130
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
131
+  (0.3ms) SELECT COUNT(*) FROM "plants"
132
+  (0.2ms) rollback transaction
133
+  (0.0ms) begin transaction
134
+ --------------------------------------------------
135
+ SeedMigrationsTest: test_loading_seeds_is_possible
136
+ --------------------------------------------------
137
+  (0.1ms) SELECT COUNT(*) FROM "plants"
138
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
139
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
140
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
141
+  (0.0ms) SAVEPOINT active_record_1
142
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
143
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:13:37.801009"], ["updated_at", "2019-04-25 10:13:37.801009"]]
144
+  (0.1ms) RELEASE SAVEPOINT active_record_1
145
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
146
+  (0.1ms) SAVEPOINT active_record_1
147
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
148
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:13:37.803560"], ["updated_at", "2019-04-25 10:13:37.803560"]]
149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
150
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
151
+  (0.0ms) SAVEPOINT active_record_1
152
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
153
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
154
+  (0.1ms) SELECT COUNT(*) FROM "plants"
155
+  (0.2ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+ ------------------------------------------------------------
158
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
159
+ ------------------------------------------------------------
160
+  (0.1ms) SELECT COUNT(*) FROM "plants"
161
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
162
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
163
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
164
+  (0.0ms) SAVEPOINT active_record_1
165
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
166
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:13:37.808857"], ["updated_at", "2019-04-25 10:13:37.808857"]]
167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
168
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
169
+  (0.0ms) SAVEPOINT active_record_1
170
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
171
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:13:37.810513"], ["updated_at", "2019-04-25 10:13:37.810513"]]
172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
173
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
174
+  (0.0ms) SAVEPOINT active_record_1
175
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
176
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
177
+  (0.1ms) SELECT COUNT(*) FROM "plants"
178
+  (0.0ms) SELECT COUNT(*) FROM "plants"
179
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
180
+  (0.0ms) SAVEPOINT active_record_1
181
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
183
+  (0.0ms) SELECT COUNT(*) FROM "plants"
184
+  (0.2ms) rollback transaction
185
+  (0.8ms) SELECT sqlite_version(*)
186
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
187
+  (0.0ms) SELECT sqlite_version(*)
188
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
189
+  (0.1ms) begin transaction
190
+ --------------------------------------------------
191
+ SeedMigrationsTest: test_loading_seeds_is_possible
192
+ --------------------------------------------------
193
+  (0.1ms) SELECT COUNT(*) FROM "plants"
194
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
195
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
196
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
197
+  (0.0ms) SAVEPOINT active_record_1
198
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
199
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:14:14.532785"], ["updated_at", "2019-04-25 10:14:14.532785"]]
200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
201
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
202
+  (0.0ms) SAVEPOINT active_record_1
203
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
204
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:14:14.534977"], ["updated_at", "2019-04-25 10:14:14.534977"]]
205
+  (0.0ms) RELEASE SAVEPOINT active_record_1
206
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
207
+  (0.0ms) SAVEPOINT active_record_1
208
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
209
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
210
+  (0.1ms) SELECT COUNT(*) FROM "plants"
211
+  (0.3ms) rollback transaction
212
+  (0.0ms) begin transaction
213
+ --------------------------------------------------------
214
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
215
+ --------------------------------------------------------
216
+  (0.1ms) SELECT COUNT(*) FROM "plants"
217
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
218
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
219
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
220
+  (0.0ms) SAVEPOINT active_record_1
221
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
222
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:14:14.540936"], ["updated_at", "2019-04-25 10:14:14.540936"]]
223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
224
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
225
+  (0.0ms) SAVEPOINT active_record_1
226
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
227
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:14:14.542794"], ["updated_at", "2019-04-25 10:14:14.542794"]]
228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
229
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
230
+  (0.0ms) SAVEPOINT active_record_1
231
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
232
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
233
+  (0.1ms) SELECT COUNT(*) FROM "plants"
234
+  (0.0ms) SELECT COUNT(*) FROM "plants"
235
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
236
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
237
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
238
+  (0.0ms) SAVEPOINT active_record_1
239
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
240
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
241
+  (0.1ms) SELECT COUNT(*) FROM "plants"
242
+  (0.2ms) rollback transaction
243
+  (0.0ms) begin transaction
244
+ ------------------------------------------------------------
245
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
246
+ ------------------------------------------------------------
247
+  (0.2ms) SELECT COUNT(*) FROM "plants"
248
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
249
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
250
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
251
+  (0.0ms) SAVEPOINT active_record_1
252
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
253
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-04-25 10:14:14.551681"], ["updated_at", "2019-04-25 10:14:14.551681"]]
254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
255
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
256
+  (0.0ms) SAVEPOINT active_record_1
257
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
258
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-04-25 10:14:14.553356"], ["updated_at", "2019-04-25 10:14:14.553356"]]
259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
260
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
261
+  (0.0ms) SAVEPOINT active_record_1
262
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
263
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
264
+  (0.1ms) SELECT COUNT(*) FROM "plants"
265
+  (0.0ms) SELECT COUNT(*) FROM "plants"
266
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
267
+  (0.0ms) SAVEPOINT active_record_1
268
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
270
+  (0.0ms) SELECT COUNT(*) FROM "plants"
271
+  (0.2ms) rollback transaction
272
+  (0.0ms) begin transaction
273
+ ----------------------------------------------------------------------
274
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
275
+ ----------------------------------------------------------------------
276
+  (0.0ms) rollback transaction
277
+  (0.8ms) SELECT sqlite_version(*)
278
+  (0.1ms) SELECT sqlite_version(*)
279
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
280
+  (0.1ms) begin transaction
281
+ --------------------------------------------------------
282
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
283
+ --------------------------------------------------------
284
+  (0.1ms) SELECT COUNT(*) FROM "plants"
285
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
286
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
287
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
288
+  (0.1ms) SAVEPOINT active_record_1
289
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
290
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:13:21.933244"], ["updated_at", "2019-08-19 10:13:21.933244"]]
291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
292
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
293
+  (0.0ms) SAVEPOINT active_record_1
294
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
295
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:13:21.935121"], ["updated_at", "2019-08-19 10:13:21.935121"]]
296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
298
+  (0.0ms) SAVEPOINT active_record_1
299
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
300
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
301
+  (0.2ms) SELECT COUNT(*) FROM "plants"
302
+  (0.1ms) SELECT COUNT(*) FROM "plants"
303
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
304
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
305
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
306
+  (0.0ms) SAVEPOINT active_record_1
307
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
308
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
309
+  (0.1ms) SELECT COUNT(*) FROM "plants"
310
+  (0.2ms) rollback transaction
311
+  (0.0ms) begin transaction
312
+ --------------------------------------------------
313
+ SeedMigrationsTest: test_loading_seeds_is_possible
314
+ --------------------------------------------------
315
+  (0.1ms) SELECT COUNT(*) FROM "plants"
316
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
317
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
318
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
319
+  (0.0ms) SAVEPOINT active_record_1
320
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
321
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:13:21.943293"], ["updated_at", "2019-08-19 10:13:21.943293"]]
322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
323
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
324
+  (0.0ms) SAVEPOINT active_record_1
325
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
326
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:13:21.944753"], ["updated_at", "2019-08-19 10:13:21.944753"]]
327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
328
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
329
+  (0.0ms) SAVEPOINT active_record_1
330
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
331
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
332
+  (0.1ms) SELECT COUNT(*) FROM "plants"
333
+  (0.2ms) rollback transaction
334
+  (0.0ms) begin transaction
335
+ ------------------------------------------------------------
336
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
337
+ ------------------------------------------------------------
338
+  (0.1ms) SELECT COUNT(*) FROM "plants"
339
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
340
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
341
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
342
+  (0.0ms) SAVEPOINT active_record_1
343
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
344
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:13:21.949755"], ["updated_at", "2019-08-19 10:13:21.949755"]]
345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
346
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
347
+  (0.1ms) SAVEPOINT active_record_1
348
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
349
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:13:21.951538"], ["updated_at", "2019-08-19 10:13:21.951538"]]
350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
351
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
352
+  (0.0ms) SAVEPOINT active_record_1
353
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
354
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
355
+  (0.1ms) SELECT COUNT(*) FROM "plants"
356
+  (0.1ms) SELECT COUNT(*) FROM "plants"
357
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
358
+  (0.0ms) SAVEPOINT active_record_1
359
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
360
+  (0.0ms) RELEASE SAVEPOINT active_record_1
361
+  (0.1ms) SELECT COUNT(*) FROM "plants"
362
+  (0.2ms) rollback transaction
363
+  (0.0ms) begin transaction
364
+ ----------------------------------------------------------------------
365
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
366
+ ----------------------------------------------------------------------
367
+  (0.0ms) rollback transaction
368
+  (0.9ms) SELECT sqlite_version(*)
369
+  (0.1ms) SELECT sqlite_version(*)
370
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
371
+  (0.1ms) begin transaction
372
+ --------------------------------------------------------
373
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
374
+ --------------------------------------------------------
375
+  (0.1ms) SELECT COUNT(*) FROM "plants"
376
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
377
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
378
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
379
+  (0.0ms) SAVEPOINT active_record_1
380
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
381
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:15:22.051274"], ["updated_at", "2019-08-19 10:15:22.051274"]]
382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
383
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
384
+  (0.0ms) SAVEPOINT active_record_1
385
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
386
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:15:22.053337"], ["updated_at", "2019-08-19 10:15:22.053337"]]
387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
388
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
389
+  (0.1ms) SAVEPOINT active_record_1
390
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
391
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
392
+  (0.1ms) SELECT COUNT(*) FROM "plants"
393
+  (0.1ms) SELECT COUNT(*) FROM "plants"
394
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
395
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
396
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
397
+  (0.0ms) SAVEPOINT active_record_1
398
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
399
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
400
+  (0.1ms) SELECT COUNT(*) FROM "plants"
401
+  (0.3ms) rollback transaction
402
+  (0.0ms) begin transaction
403
+ --------------------------------------------------
404
+ SeedMigrationsTest: test_loading_seeds_is_possible
405
+ --------------------------------------------------
406
+  (0.1ms) SELECT COUNT(*) FROM "plants"
407
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
408
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
409
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
410
+  (0.0ms) SAVEPOINT active_record_1
411
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
412
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:15:22.062255"], ["updated_at", "2019-08-19 10:15:22.062255"]]
413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
414
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
415
+  (0.0ms) SAVEPOINT active_record_1
416
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
417
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:15:22.063699"], ["updated_at", "2019-08-19 10:15:22.063699"]]
418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
419
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
420
+  (0.0ms) SAVEPOINT active_record_1
421
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
422
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
423
+  (0.1ms) SELECT COUNT(*) FROM "plants"
424
+  (0.3ms) rollback transaction
425
+  (0.0ms) begin transaction
426
+ ------------------------------------------------------------
427
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
428
+ ------------------------------------------------------------
429
+  (0.1ms) SELECT COUNT(*) FROM "plants"
430
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
431
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
432
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
433
+  (0.0ms) SAVEPOINT active_record_1
434
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
435
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:15:22.068748"], ["updated_at", "2019-08-19 10:15:22.068748"]]
436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
437
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
438
+  (0.0ms) SAVEPOINT active_record_1
439
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
440
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:15:22.070574"], ["updated_at", "2019-08-19 10:15:22.070574"]]
441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
442
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
443
+  (0.0ms) SAVEPOINT active_record_1
444
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
445
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
446
+  (0.1ms) SELECT COUNT(*) FROM "plants"
447
+  (0.0ms) SELECT COUNT(*) FROM "plants"
448
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
449
+  (0.0ms) SAVEPOINT active_record_1
450
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
452
+  (0.1ms) SELECT COUNT(*) FROM "plants"
453
+  (1.0ms) rollback transaction
454
+  (0.1ms) begin transaction
455
+ ----------------------------------------------------------------------
456
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
457
+ ----------------------------------------------------------------------
458
+  (0.0ms) rollback transaction
459
+  (0.8ms) SELECT sqlite_version(*)
460
+  (0.1ms) SELECT sqlite_version(*)
461
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
462
+  (0.1ms) begin transaction
463
+ --------------------------------------------------------
464
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
465
+ --------------------------------------------------------
466
+  (0.1ms) SELECT COUNT(*) FROM "plants"
467
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
468
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
469
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
470
+  (0.0ms) SAVEPOINT active_record_1
471
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
472
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:15:27.208201"], ["updated_at", "2019-08-19 10:15:27.208201"]]
473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
474
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
475
+  (0.0ms) SAVEPOINT active_record_1
476
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
477
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:15:27.210189"], ["updated_at", "2019-08-19 10:15:27.210189"]]
478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
479
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
480
+  (0.0ms) SAVEPOINT active_record_1
481
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
482
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
483
+  (0.1ms) SELECT COUNT(*) FROM "plants"
484
+  (0.0ms) SELECT COUNT(*) FROM "plants"
485
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
486
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
487
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
488
+  (0.0ms) SAVEPOINT active_record_1
489
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
490
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
491
+  (0.1ms) SELECT COUNT(*) FROM "plants"
492
+  (0.3ms) rollback transaction
493
+  (0.0ms) begin transaction
494
+ ------------------------------------------------------------
495
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
496
+ ------------------------------------------------------------
497
+  (0.1ms) SELECT COUNT(*) FROM "plants"
498
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
499
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
500
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
501
+  (0.0ms) SAVEPOINT active_record_1
502
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
503
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:15:27.218707"], ["updated_at", "2019-08-19 10:15:27.218707"]]
504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
505
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
506
+  (0.0ms) SAVEPOINT active_record_1
507
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
508
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:15:27.220160"], ["updated_at", "2019-08-19 10:15:27.220160"]]
509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
510
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
511
+  (0.0ms) SAVEPOINT active_record_1
512
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
513
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
514
+  (0.1ms) SELECT COUNT(*) FROM "plants"
515
+  (0.0ms) SELECT COUNT(*) FROM "plants"
516
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
517
+  (0.0ms) SAVEPOINT active_record_1
518
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
520
+  (0.1ms) SELECT COUNT(*) FROM "plants"
521
+  (0.3ms) rollback transaction
522
+  (0.0ms) begin transaction
523
+ --------------------------------------------------
524
+ SeedMigrationsTest: test_loading_seeds_is_possible
525
+ --------------------------------------------------
526
+  (0.2ms) SELECT COUNT(*) FROM "plants"
527
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
528
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
529
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
530
+  (0.0ms) SAVEPOINT active_record_1
531
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
532
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:15:27.228213"], ["updated_at", "2019-08-19 10:15:27.228213"]]
533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
534
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
535
+  (0.1ms) SAVEPOINT active_record_1
536
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
537
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:15:27.230024"], ["updated_at", "2019-08-19 10:15:27.230024"]]
538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
539
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
540
+  (0.0ms) SAVEPOINT active_record_1
541
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
542
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
543
+  (0.1ms) SELECT COUNT(*) FROM "plants"
544
+  (0.2ms) rollback transaction
545
+  (0.0ms) begin transaction
546
+ ----------------------------------------------------------------------
547
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
548
+ ----------------------------------------------------------------------
549
+  (0.1ms) rollback transaction
550
+  (1.7ms) SELECT sqlite_version(*)
551
+  (0.1ms) SELECT sqlite_version(*)
552
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
553
+  (0.1ms) begin transaction
554
+ --------------------------------------------------
555
+ SeedMigrationsTest: test_loading_seeds_is_possible
556
+ --------------------------------------------------
557
+  (0.1ms) SELECT COUNT(*) FROM "plants"
558
+  (1.0ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
559
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
560
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
561
+  (0.0ms) SAVEPOINT active_record_1
562
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
563
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:48:13.502501"], ["updated_at", "2019-08-19 10:48:13.502501"]]
564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
565
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
566
+  (0.0ms) SAVEPOINT active_record_1
567
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
568
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:48:13.504698"], ["updated_at", "2019-08-19 10:48:13.504698"]]
569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
570
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
571
+  (0.1ms) SAVEPOINT active_record_1
572
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
573
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
574
+  (0.1ms) SELECT COUNT(*) FROM "plants"
575
+  (0.2ms) rollback transaction
576
+  (0.0ms) begin transaction
577
+ ------------------------------------------------------------
578
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
579
+ ------------------------------------------------------------
580
+  (0.2ms) SELECT COUNT(*) FROM "plants"
581
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
582
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
583
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
584
+  (0.0ms) SAVEPOINT active_record_1
585
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
586
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:48:13.510845"], ["updated_at", "2019-08-19 10:48:13.510845"]]
587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
588
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
589
+  (0.0ms) SAVEPOINT active_record_1
590
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
591
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:48:13.512384"], ["updated_at", "2019-08-19 10:48:13.512384"]]
592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
593
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
594
+  (0.0ms) SAVEPOINT active_record_1
595
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
596
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
597
+  (0.1ms) SELECT COUNT(*) FROM "plants"
598
+  (0.0ms) SELECT COUNT(*) FROM "plants"
599
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
600
+  (0.0ms) SAVEPOINT active_record_1
601
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
603
+  (0.0ms) SELECT COUNT(*) FROM "plants"
604
+  (0.2ms) rollback transaction
605
+  (0.0ms) begin transaction
606
+ --------------------------------------------------------
607
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
608
+ --------------------------------------------------------
609
+  (0.1ms) SELECT COUNT(*) FROM "plants"
610
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
611
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
612
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
613
+  (0.0ms) SAVEPOINT active_record_1
614
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
615
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-19 10:48:13.520692"], ["updated_at", "2019-08-19 10:48:13.520692"]]
616
+  (0.1ms) RELEASE SAVEPOINT active_record_1
617
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
618
+  (0.1ms) SAVEPOINT active_record_1
619
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
620
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-19 10:48:13.523343"], ["updated_at", "2019-08-19 10:48:13.523343"]]
621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
622
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
623
+  (0.0ms) SAVEPOINT active_record_1
624
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
625
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
626
+  (0.1ms) SELECT COUNT(*) FROM "plants"
627
+  (0.0ms) SELECT COUNT(*) FROM "plants"
628
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
629
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
630
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
631
+  (0.1ms) SAVEPOINT active_record_1
632
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
633
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
634
+  (0.1ms) SELECT COUNT(*) FROM "plants"
635
+  (0.1ms) rollback transaction
636
+  (0.0ms) begin transaction
637
+ ----------------------------------------------------------------------
638
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
639
+ ----------------------------------------------------------------------
640
+  (0.0ms) rollback transaction
641
+  (2.2ms) SELECT sqlite_version(*)
642
+  (0.1ms) SELECT sqlite_version(*)
643
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
644
+  (0.0ms) begin transaction
645
+ --------------------------------------------------------
646
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
647
+ --------------------------------------------------------
648
+  (0.1ms) SELECT COUNT(*) FROM "plants"
649
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
650
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
651
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
652
+  (0.0ms) SAVEPOINT active_record_1
653
+ Plant Create (0.3ms) INSERT INTO "plants" DEFAULT VALUES
654
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-20 08:24:16.962167"], ["updated_at", "2019-08-20 08:24:16.962167"]]
655
+  (0.0ms) RELEASE SAVEPOINT active_record_1
656
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
657
+  (0.0ms) SAVEPOINT active_record_1
658
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
659
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-20 08:24:16.964241"], ["updated_at", "2019-08-20 08:24:16.964241"]]
660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
661
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
662
+  (0.0ms) SAVEPOINT active_record_1
663
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
664
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
665
+  (0.1ms) SELECT COUNT(*) FROM "plants"
666
+  (0.0ms) SELECT COUNT(*) FROM "plants"
667
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
668
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
669
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
670
+  (0.0ms) SAVEPOINT active_record_1
671
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
672
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
673
+  (0.1ms) SELECT COUNT(*) FROM "plants"
674
+  (0.2ms) rollback transaction
675
+  (0.0ms) begin transaction
676
+ --------------------------------------------------
677
+ SeedMigrationsTest: test_loading_seeds_is_possible
678
+ --------------------------------------------------
679
+  (0.1ms) SELECT COUNT(*) FROM "plants"
680
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
681
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
682
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
683
+  (0.0ms) SAVEPOINT active_record_1
684
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
685
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-20 08:24:16.972140"], ["updated_at", "2019-08-20 08:24:16.972140"]]
686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
687
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
688
+  (0.0ms) SAVEPOINT active_record_1
689
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
690
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-20 08:24:16.974179"], ["updated_at", "2019-08-20 08:24:16.974179"]]
691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
692
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
693
+  (0.1ms) SAVEPOINT active_record_1
694
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
695
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
696
+  (0.1ms) SELECT COUNT(*) FROM "plants"
697
+  (0.2ms) rollback transaction
698
+  (0.0ms) begin transaction
699
+ ------------------------------------------------------------
700
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
701
+ ------------------------------------------------------------
702
+  (0.1ms) SELECT COUNT(*) FROM "plants"
703
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
704
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
705
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
706
+  (0.0ms) SAVEPOINT active_record_1
707
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
708
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-20 08:24:16.980246"], ["updated_at", "2019-08-20 08:24:16.980246"]]
709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
710
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
711
+  (0.0ms) SAVEPOINT active_record_1
712
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
713
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-20 08:24:16.981712"], ["updated_at", "2019-08-20 08:24:16.981712"]]
714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
715
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
716
+  (0.0ms) SAVEPOINT active_record_1
717
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
718
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
719
+  (0.1ms) SELECT COUNT(*) FROM "plants"
720
+  (0.0ms) SELECT COUNT(*) FROM "plants"
721
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
722
+  (0.0ms) SAVEPOINT active_record_1
723
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
724
+  (0.0ms) RELEASE SAVEPOINT active_record_1
725
+  (0.0ms) SELECT COUNT(*) FROM "plants"
726
+  (0.2ms) rollback transaction
727
+  (0.0ms) begin transaction
728
+ ----------------------------------------------------------------------
729
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
730
+ ----------------------------------------------------------------------
731
+  (0.0ms) rollback transaction
732
+  (0.7ms) SELECT sqlite_version(*)
733
+  (0.1ms) SELECT sqlite_version(*)
734
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
735
+  (0.1ms) begin transaction
736
+ ------------------------------------------------------------
737
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
738
+ ------------------------------------------------------------
739
+  (0.1ms) SELECT COUNT(*) FROM "plants"
740
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
741
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
742
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
743
+  (0.0ms) SAVEPOINT active_record_1
744
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
745
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-20 08:24:56.669294"], ["updated_at", "2019-08-20 08:24:56.669294"]]
746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
747
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
748
+  (0.1ms) SAVEPOINT active_record_1
749
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
750
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-20 08:24:56.677649"], ["updated_at", "2019-08-20 08:24:56.677649"]]
751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
752
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
753
+  (0.0ms) SAVEPOINT active_record_1
754
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
755
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
756
+  (0.1ms) SELECT COUNT(*) FROM "plants"
757
+  (0.1ms) SELECT COUNT(*) FROM "plants"
758
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
759
+  (0.0ms) SAVEPOINT active_record_1
760
+ Plant Create (0.4ms) INSERT INTO "plants" DEFAULT VALUES
761
+  (0.1ms) RELEASE SAVEPOINT active_record_1
762
+  (0.1ms) SELECT COUNT(*) FROM "plants"
763
+  (0.3ms) rollback transaction
764
+  (0.0ms) begin transaction
765
+ --------------------------------------------------------
766
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
767
+ --------------------------------------------------------
768
+  (0.1ms) SELECT COUNT(*) FROM "plants"
769
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
770
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
771
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
772
+  (0.0ms) SAVEPOINT active_record_1
773
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
774
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-20 08:24:56.686132"], ["updated_at", "2019-08-20 08:24:56.686132"]]
775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
776
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
777
+  (0.0ms) SAVEPOINT active_record_1
778
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
779
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-20 08:24:56.687551"], ["updated_at", "2019-08-20 08:24:56.687551"]]
780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
781
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
782
+  (0.0ms) SAVEPOINT active_record_1
783
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
784
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
785
+  (0.1ms) SELECT COUNT(*) FROM "plants"
786
+  (0.0ms) SELECT COUNT(*) FROM "plants"
787
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
788
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
789
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
790
+  (0.1ms) SAVEPOINT active_record_1
791
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
792
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
793
+  (0.3ms) SELECT COUNT(*) FROM "plants"
794
+  (0.2ms) rollback transaction
795
+  (0.0ms) begin transaction
796
+ --------------------------------------------------
797
+ SeedMigrationsTest: test_loading_seeds_is_possible
798
+ --------------------------------------------------
799
+  (0.1ms) SELECT COUNT(*) FROM "plants"
800
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
801
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
802
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
803
+  (0.0ms) SAVEPOINT active_record_1
804
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
805
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2019-08-20 08:24:56.696366"], ["updated_at", "2019-08-20 08:24:56.696366"]]
806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
807
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
808
+  (0.0ms) SAVEPOINT active_record_1
809
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
810
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2019-08-20 08:24:56.697895"], ["updated_at", "2019-08-20 08:24:56.697895"]]
811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
812
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
813
+  (0.0ms) SAVEPOINT active_record_1
814
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
815
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
816
+  (0.1ms) SELECT COUNT(*) FROM "plants"
817
+  (0.2ms) rollback transaction
818
+  (0.0ms) begin transaction
819
+ ----------------------------------------------------------------------
820
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
821
+ ----------------------------------------------------------------------
822
+  (0.0ms) rollback transaction
823
+  (0.8ms) SELECT sqlite_version(*)
824
+  (0.1ms) SELECT sqlite_version(*)
825
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
826
+  (0.1ms) begin transaction
827
+ --------------------------------------------------------
828
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
829
+ --------------------------------------------------------
830
+  (0.3ms) SELECT COUNT(*) FROM "plants"
831
+  (0.5ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
832
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
833
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
834
+  (0.1ms) SAVEPOINT active_record_1
835
+ Plant Create (0.3ms) INSERT INTO "plants" DEFAULT VALUES
836
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2020-05-01 14:13:29.544147"], ["updated_at", "2020-05-01 14:13:29.544147"]]
837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
838
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
839
+  (0.1ms) SAVEPOINT active_record_1
840
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
841
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2020-05-01 14:13:29.546677"], ["updated_at", "2020-05-01 14:13:29.546677"]]
842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
843
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
844
+  (0.1ms) SAVEPOINT active_record_1
845
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
846
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
847
+  (0.1ms) SELECT COUNT(*) FROM "plants"
848
+  (0.1ms) SELECT COUNT(*) FROM "plants"
849
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
850
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
851
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
852
+  (0.1ms) SAVEPOINT active_record_1
853
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
854
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
855
+  (0.1ms) SELECT COUNT(*) FROM "plants"
856
+  (0.2ms) rollback transaction
857
+  (0.0ms) begin transaction
858
+ ------------------------------------------------------------
859
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
860
+ ------------------------------------------------------------
861
+  (0.2ms) SELECT COUNT(*) FROM "plants"
862
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
863
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
864
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
865
+  (0.0ms) SAVEPOINT active_record_1
866
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
867
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2020-05-01 14:13:29.555923"], ["updated_at", "2020-05-01 14:13:29.555923"]]
868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
869
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
870
+  (0.0ms) SAVEPOINT active_record_1
871
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
872
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2020-05-01 14:13:29.557600"], ["updated_at", "2020-05-01 14:13:29.557600"]]
873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
874
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
875
+  (0.1ms) SAVEPOINT active_record_1
876
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
877
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
878
+  (0.1ms) SELECT COUNT(*) FROM "plants"
879
+  (0.1ms) SELECT COUNT(*) FROM "plants"
880
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
881
+  (0.1ms) SAVEPOINT active_record_1
882
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
884
+  (0.1ms) SELECT COUNT(*) FROM "plants"
885
+  (0.3ms) rollback transaction
886
+  (0.0ms) begin transaction
887
+ --------------------------------------------------
888
+ SeedMigrationsTest: test_loading_seeds_is_possible
889
+ --------------------------------------------------
890
+  (0.2ms) SELECT COUNT(*) FROM "plants"
891
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
892
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
893
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
894
+  (0.1ms) SAVEPOINT active_record_1
895
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
896
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2020-05-01 14:13:29.567020"], ["updated_at", "2020-05-01 14:13:29.567020"]]
897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
898
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
899
+  (0.1ms) SAVEPOINT active_record_1
900
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
901
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2020-05-01 14:13:29.568875"], ["updated_at", "2020-05-01 14:13:29.568875"]]
902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
903
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
904
+  (0.0ms) SAVEPOINT active_record_1
905
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
906
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
907
+  (0.1ms) SELECT COUNT(*) FROM "plants"
908
+  (0.2ms) rollback transaction
909
+  (0.0ms) begin transaction
910
+ ----------------------------------------------------------------------
911
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
912
+ ----------------------------------------------------------------------
913
+  (0.1ms) rollback transaction
914
+  (0.7ms) SELECT sqlite_version(*)
915
+  (0.1ms) SELECT sqlite_version(*)
916
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
917
+ TRANSACTION (0.0ms) begin transaction
918
+ ----------------------------------------------------------------------
919
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
920
+ ----------------------------------------------------------------------
921
+ TRANSACTION (0.0ms) rollback transaction
922
+ TRANSACTION (0.0ms) begin transaction
923
+ --------------------------------------------------------
924
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
925
+ --------------------------------------------------------
926
+  (0.1ms) SELECT COUNT(*) FROM "plants"
927
+  (0.5ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
928
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
929
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
930
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
931
+ Plant Create (0.2ms) INSERT INTO "plants" DEFAULT VALUES
932
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2020-12-15 11:40:55.489866"], ["updated_at", "2020-12-15 11:40:55.489866"]]
933
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
934
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
935
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
936
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
937
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2020-12-15 11:40:55.492213"], ["updated_at", "2020-12-15 11:40:55.492213"]]
938
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
939
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
940
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
941
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
942
+ TRANSACTION (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
943
+  (0.1ms) SELECT COUNT(*) FROM "plants"
944
+  (0.0ms) SELECT COUNT(*) FROM "plants"
945
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
946
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
947
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
948
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
949
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
950
+ TRANSACTION (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
951
+  (0.1ms) SELECT COUNT(*) FROM "plants"
952
+ TRANSACTION (0.2ms) rollback transaction
953
+ TRANSACTION (0.0ms) begin transaction
954
+ --------------------------------------------------
955
+ SeedMigrationsTest: test_loading_seeds_is_possible
956
+ --------------------------------------------------
957
+  (0.1ms) SELECT COUNT(*) FROM "plants"
958
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
959
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
960
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
961
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
962
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
963
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2020-12-15 11:40:55.500517"], ["updated_at", "2020-12-15 11:40:55.500517"]]
964
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
965
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
966
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
967
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
968
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2020-12-15 11:40:55.502380"], ["updated_at", "2020-12-15 11:40:55.502380"]]
969
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
970
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
971
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
972
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
973
+ TRANSACTION (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
974
+  (0.1ms) SELECT COUNT(*) FROM "plants"
975
+ TRANSACTION (0.2ms) rollback transaction
976
+ TRANSACTION (0.0ms) begin transaction
977
+ ------------------------------------------------------------
978
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
979
+ ------------------------------------------------------------
980
+  (0.1ms) SELECT COUNT(*) FROM "plants"
981
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
982
+  (0.1ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
983
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
984
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
985
+ Plant Create (0.1ms) INSERT INTO "plants" DEFAULT VALUES
986
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", "2020-12-15 11:40:55.508317"], ["updated_at", "2020-12-15 11:40:55.508317"]]
987
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
988
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
989
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
990
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
991
+ ActiveRecord::SeedMigration Create (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", "2020-12-15 11:40:55.509959"], ["updated_at", "2020-12-15 11:40:55.509959"]]
992
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
993
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
994
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
995
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
996
+ TRANSACTION (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
997
+  (0.1ms) SELECT COUNT(*) FROM "plants"
998
+  (0.1ms) SELECT COUNT(*) FROM "plants"
999
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
1000
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
1001
+ Plant Create (0.0ms) INSERT INTO "plants" DEFAULT VALUES
1002
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
1003
+  (0.1ms) SELECT COUNT(*) FROM "plants"
1004
+ TRANSACTION (0.2ms) rollback transaction