ish_models 0.0.33.276 → 0.0.33.277
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gallery.rb +1 -1
- data/lib/office/email_conversation_tag.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36411d08f39d7a925ed4fd5de390befa5eee272007fec32f066abfb70b3cf2ad
|
4
|
+
data.tar.gz: 1c8e73e3ebd9d90089e9f04fa6801f6829923d2fadef4bb718ead3914caba12d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5708dc9923e8a8e4dd2de2d944388f42a187324c299805e8f5f1508ea8739f0e1fea2f6d89fe03b694c2db2828837d2e47ac47c30c010238a02daeda2658c733
|
7
|
+
data.tar.gz: e217472d41b1942cc9f67614853476f31509a4febb9bee257a18693465ec3bf1c2013f9393e641e576ac9fc75dc7eaac9fdd91344229006f2628c59b5ac229ff
|
data/lib/gallery.rb
CHANGED
@@ -5,7 +5,10 @@ class Office::EmailConversationTag
|
|
5
5
|
|
6
6
|
belongs_to :email_conversation, class_name: 'Office::EmailConversation'
|
7
7
|
|
8
|
-
field
|
8
|
+
field :wp_term_id, type: :integer
|
9
9
|
validates :wp_term_id, uniqueness: { scope: :email_conversation_id }, presence: true
|
10
|
+
index({ wp_term_id: -1 })
|
11
|
+
index({ wp_term_id: -1, latest_at: -1 })
|
12
|
+
|
10
13
|
|
11
14
|
end
|