wesnoth/utils/mp-server/query-scripts/30-addon-download-counts.sql
2024-04-04 14:56:15 -05:00

5 lines
204 B
SQL

select INSTANCE_VERSION, ADDON_ID, VERSION, UPLOADED_ON, DOWNLOAD_COUNT
from campaignd_addon_info
where INSTANCE_VERSION not in ('1.15', '1.16')
order by INSTANCE_VERSION desc, ADDON_ID, UPLOADED_ON desc