katalyst-koi 5.11.1 → 5.11.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea4f9e29a1eef22e9a178c663b56950384655fb7c91d27cccfbe406b1aaf7d93
|
|
4
|
+
data.tar.gz: 7cd1ddf3134fdff40742dd19e0667a58060519ef1b21214003c1f5894dc10a52
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0ac94af56d9f31ba511cc25e747d3d72002c1b5997c0fa6094898d4b430810325c2b34efd3baf817ffe94797de4fc4ec2f7aa2ce6f9b60e4c0fd4375d9c1fde
|
|
7
|
+
data.tar.gz: 1f74e303e8430572b1c5191ae303014f26bc7ea69a073483693f8a3c9945e640d7701ba4a6152f8d8d46383771b7f0d1fdea42dd622863e2a0cd444a1713a341
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
class DeviseCreateAdmins < ActiveRecord::Migration[4.2]
|
|
4
|
-
# rubocop:disable Metrics/BlockLength
|
|
4
|
+
# rubocop:disable-next Metrics/BlockLength
|
|
5
5
|
def change
|
|
6
6
|
create_table(:admins) do |t|
|
|
7
7
|
## Database authenticatable
|
|
@@ -52,5 +52,4 @@ class DeviseCreateAdmins < ActiveRecord::Migration[4.2]
|
|
|
52
52
|
# add_index :koi_admins, :unlock_token, :unique => true
|
|
53
53
|
# add_index :koi_admins, :authentication_token, :unique => true
|
|
54
54
|
end
|
|
55
|
-
# rubocop:enable Metrics/BlockLength
|
|
56
55
|
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# rubocop:disable Rails/BulkChangeTable
|
|
3
|
+
# rubocop:disable-next Rails/BulkChangeTable
|
|
4
4
|
class UpdateAdminUsers < ActiveRecord::Migration[7.0]
|
|
5
5
|
class Admin < ApplicationRecord; end
|
|
6
6
|
|
|
@@ -39,4 +39,3 @@ class UpdateAdminUsers < ActiveRecord::Migration[7.0]
|
|
|
39
39
|
remove_column :admins, :name, :string
|
|
40
40
|
end
|
|
41
41
|
end
|
|
42
|
-
# rubocop:enable Rails/BulkChangeTable
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# rubocop:disable Rails/BulkChangeTable
|
|
3
|
+
# rubocop:disable-next Rails/BulkChangeTable
|
|
4
4
|
class CleanUpAdminUserTimestamps < ActiveRecord::Migration[8.1]
|
|
5
5
|
def change
|
|
6
6
|
# remove 'last sign in' tracking columns, database sessions make these redundant
|
|
@@ -22,4 +22,3 @@ class CleanUpAdminUserTimestamps < ActiveRecord::Migration[8.1]
|
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
|
-
# rubocop:enable Rails/BulkChangeTable
|