diff options
author | Alec Warner <antarus@gentoo.org> | 2018-07-08 18:38:47 -0400 |
---|---|---|
committer | Alec Warner <antarus@gentoo.org> | 2018-07-08 18:38:47 -0400 |
commit | 2f61766e3746352bbe7ca0bd4679bbc83bc19d58 (patch) | |
tree | 662c797f46d3441846a2189e01739c2dea2674fe /app/models/version.rb | |
parent | Try to fix Build. (diff) | |
download | packages-5-2f61766e3746352bbe7ca0bd4679bbc83bc19d58.tar.gz packages-5-2f61766e3746352bbe7ca0bd4679bbc83bc19d58.tar.bz2 packages-5-2f61766e3746352bbe7ca0bd4679bbc83bc19d58.zip |
Fix p.g.o versioning.v6.0.22
Bug: https://bugs.gentoo.org/attachment.cgi?id=538714&action=edit
Diffstat (limited to 'app/models/version.rb')
-rw-r--r-- | app/models/version.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/version.rb b/app/models/version.rb index a457c2c..62c72f8 100644 --- a/app/models/version.rb +++ b/app/models/version.rb @@ -8,7 +8,7 @@ class Version attribute :version, String, mapping: { type: 'keyword' } attribute :package, String, mapping: { type: 'keyword' } attribute :atom, String, mapping: { type: 'keyword' } - attribute :sort_key, Integer, mapping: { type: 'keyword' } + attribute :sort_key, Integer, mapping: { type: 'integer' } attribute :slot, String, mapping: { type: 'keyword' } attribute :subslot, String, mapping: { type: 'keyword' } attribute :eapi, String, mapping: { type: 'keyword' } |