seed_migrations 1.4.0 → 1.5.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: 6e5f2992031b8c964a5b4fa11c357a4dc49e02facaf8f0014ca2f949dcbd89a0
4
- data.tar.gz: 3aa18ba2436d18254bae5d771d3c138f8747a6fc6c1f43bfbd75118dbc91ef79
3
+ metadata.gz: bcf02709509690f39ba92f36ff4a98f53673d05309185d3091e23947b33ea945
4
+ data.tar.gz: f1b205b25832dcfc5c9e9a90946e674d4a643c315e2f2a93522a78801afc5044
5
5
  SHA512:
6
- metadata.gz: 496e21077520ae3c539791b1da0b9d0d9a126c20eb84abaa5702c978957a19d63542f230dbee92839e1c303bcb902de4c3e0c311cf2fea1f46c6de1dcfaf8996
7
- data.tar.gz: 3cca315d5325384c3a727f4f2aa3957c614e75daaa6e2cb4509e15dd95fd9921d134d6cd1503e545cd8d99008e19755690bab8725cd2a20832115f95dba18dc8
6
+ metadata.gz: c586fcd5c4efb81bcd52bc676ea3329788dd7e7245ec051f2c34248083eb90f235f1754dc9ed180a9b3e63d79960170243bb67f94b53b6f24104035bc0d1bc64
7
+ data.tar.gz: dee0f188a2454d6c018770831230f984505d4a8bd6330b6dfe02cee66a1bfba1dfc0a775b78389594fe0f57256afe872297784862ecbd06feb39b5df7745e2d6
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/seed_migrations.png)](http://badge.fury.io/rb/seed_migrations)
2
+ [![build](https://github.com/onrooby/seed_migrations/actions/workflows/build.yml/badge.svg)](https://github.com/onrooby/seed_migrations/actions/workflows/build.yml)
2
3
 
3
4
  Welcome to SeedMigrations
4
5
  =========================
@@ -1,3 +1,3 @@
1
1
  module SeedMigrations
2
- VERSION = "1.4.0"
2
+ VERSION = "1.5.0"
3
3
  end
@@ -39,12 +39,8 @@ module Dummy
39
39
  # This is necessary if your schema can't be completely dumped by the schema dumper,
40
40
  # like if you have constraints or database-specific column types
41
41
  # config.active_record.schema_format = :sql
42
-
43
- # Enable the asset pipeline
44
- config.assets.enabled = true
45
-
46
- # Version of your assets, change this if you want to expire all your assets
47
- config.assets.version = '1.0'
42
+
43
+ config.active_record.legacy_connection_handling = false
48
44
  end
49
45
  end
50
46