seed_migrations 1.3.0 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8644c598a1993e7cc1ebfc2b7c800fc81cc51003b69edf58ee545bfe1b608c34
4
- data.tar.gz: 84822e157091a22320204307c3074177edf09fdd38ee0303bcca373538615ee4
3
+ metadata.gz: 6e5f2992031b8c964a5b4fa11c357a4dc49e02facaf8f0014ca2f949dcbd89a0
4
+ data.tar.gz: 3aa18ba2436d18254bae5d771d3c138f8747a6fc6c1f43bfbd75118dbc91ef79
5
5
  SHA512:
6
- metadata.gz: 1897dfdade9f1f92d52d0a79d277a4b2855f1ef45ef6f75978ca2dbfb98206a5f75435c2bfc415295b93437768137c14bdd19058ef6f0064514ee14cae9996c0
7
- data.tar.gz: 8a6c7ded4dc005955758aae0ce36536452e9b1e00682d21b763658b54cf0b7dbe058f34ee8cf2ef9b0ac0f0068da31dcd45ca4d3bb7e81cf631f9773abf408d5
6
+ metadata.gz: 496e21077520ae3c539791b1da0b9d0d9a126c20eb84abaa5702c978957a19d63542f230dbee92839e1c303bcb902de4c3e0c311cf2fea1f46c6de1dcfaf8996
7
+ data.tar.gz: 3cca315d5325384c3a727f4f2aa3957c614e75daaa6e2cb4509e15dd95fd9921d134d6cd1503e545cd8d99008e19755690bab8725cd2a20832115f95dba18dc8
@@ -1,3 +1,3 @@
1
1
  module SeedMigrations
2
- VERSION = "1.3.0"
2
+ VERSION = "1.4.0"
3
3
  end
@@ -820,3 +820,185 @@ SeedMigrationsTest: test_loading_seeds_is_possible
820
820
  SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
821
821
  ----------------------------------------------------------------------
822
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seed_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dustin Eversmann
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-08-19 00:00:00.000000000 Z
12
+ date: 2020-12-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -20,7 +20,7 @@ dependencies:
20
20
  version: 6.0.0
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '6.1'
23
+ version: '6.2'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  version: 6.0.0
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '6.1'
33
+ version: '6.2'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: sqlite3
36
36
  requirement: !ruby/object:Gem::Requirement