legion-data 1.6.22 → 1.6.23
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: 3a52e261165a48697cac4ec831466f240bd0fcba51a0d715011248a6d5060270
|
|
4
|
+
data.tar.gz: 7359ee3b79b4c70c4a7bd0a21f9e05193fe9c321f7141e56fa1ea0910c817a4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74b4021f040895bec1e3be977b0910bd29f8478d9d64d0369bda2c414f9d8a7f661b0a95fdd563dc8d70b319e6c3182f49339dce001831e5ca9d781ca5beb73c
|
|
7
|
+
data.tar.gz: 04015705f6cc1ff213fddf4eae37c4733af6b2d5960db01a439dc0259c3a1e2a39e2abb1fd33db1d82e71c8d2a6b710579a6df7aead578e93e1e981d56fa5494
|
data/CHANGELOG.md
CHANGED
|
@@ -24,7 +24,7 @@ Sequel.migration do
|
|
|
24
24
|
run <<~SQL
|
|
25
25
|
CREATE INDEX idx_memberships_trust_tiebreak
|
|
26
26
|
ON identity_group_memberships (principal_id, trust_weight ASC,
|
|
27
|
-
CASE status WHEN 'expired' THEN 0 WHEN 'stale' THEN 1 WHEN 'active' THEN 2 END ASC)
|
|
27
|
+
(CASE status WHEN 'expired' THEN 0 WHEN 'stale' THEN 1 WHEN 'active' THEN 2 END) ASC)
|
|
28
28
|
SQL
|
|
29
29
|
end
|
|
30
30
|
|
data/lib/legion/data/version.rb
CHANGED