exclude versions too old to have all data populated.

This commit is contained in:
pentarctagon 2023-11-11 18:29:46 -06:00
parent c9ba117cb0
commit ec0f8f9942

View file

@ -1,3 +1,4 @@
select INSTANCE_VERSION, ADDON_ID, VERSION, UPLOADED_ON, DOWNLOAD_COUNT
from campaignd_addon_info
order by INSTANCE_VERSION desc, DOWNLOAD_COUNT desc
where INSTANCE_VERSION not in ('1.15', '1.16')
order by INSTANCE_VERSION desc, ADDON_ID, UPLOADED_ON desc