seed_migrations 1.4.0 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/seed_migrations/version.rb +1 -1
- data/test/dummy/config/application.rb +2 -6
- data/test/dummy/log/test.log +453 -774
- data/test/dummy/tmp/development_secret.txt +1 -1
- data/test/test_helper.rb +1 -0
- metadata +32 -32
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcf02709509690f39ba92f36ff4a98f53673d05309185d3091e23947b33ea945
|
4
|
+
data.tar.gz: f1b205b25832dcfc5c9e9a90946e674d4a643c315e2f2a93522a78801afc5044
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
=========================
|
@@ -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
|
-
|
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
|
|