thecore_settings 3.0.4 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59c2896eae2eeae5cf7d885dcbcf76c7994f62cf6b2a2d06b04dad93989aad6a
4
- data.tar.gz: 937756d5fca8fbabf06f6af224e713d551393ce9e44093dea6c21cd1a47f7dff
3
+ metadata.gz: ba8edaab96e1ed2b2eb0227ccb00f393bfef044ad2ca90b55e01ccea7b88ffc6
4
+ data.tar.gz: aba679ae6d036ec11127751585aae3132093f304a636ae7c71121ce2fb6efebf
5
5
  SHA512:
6
- metadata.gz: ecea90d5b88a390b665d39b3306751717ccec03c10334636ec836d21536fa37ac0a36a137ebe0fc1b266aa84d65d2258b4c4c91da8db86ed3597d139f2f348ba
7
- data.tar.gz: 9e9a2ef1608044c5c7cce7bb5f8c91d24c70cfcf5d44813880f7c2b52b9114b8f3193aaf1282312ac7b3a5dd21ed3f4ff722539b03dc04f3cc4dfc0235956006
6
+ metadata.gz: 644bbbb39867a299e34df9ce1610584d231abb6ee61ef4fbc57a515e1193b000beabaefa16683007972fd4887ad58a3ffac21c41e6163693f539fa2189b34426
7
+ data.tar.gz: 04f54a7b1f0dbb21136286afa9ee085b5703b49c804538c9b9680f8ba8aaad5381b199ed8c07f871f44c215c1c58f36a18d4d0a0dcf52eaf58e3fbd4ae597c72
@@ -1,6 +1,6 @@
1
- class CreateThecoreSettings < ActiveRecord::Migration[5.2]
1
+ class CreateThecoreSettings < ActiveRecord::Migration[7.0]
2
2
  def change
3
- create_table :thecore_settings do |t|
3
+ create_table :thecore_settings, if_not_exists: true do |t|
4
4
  t.boolean :enabled, default: true
5
5
  t.string :kind, null: false, default: 'string'
6
6
  t.string :ns, default: 'main'
@@ -1,4 +1,4 @@
1
- class MigrateFromRailsAdminSettingsToThecoreSettings < ActiveRecord::Migration[5.2]
1
+ class MigrateFromRailsAdminSettingsToThecoreSettings < ActiveRecord::Migration[7.0]
2
2
 
3
3
  module RailsAdminSettings
4
4
  class Setting < ActiveRecord::Base
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_settings
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni