summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2018-08-12 12:22:21 +0200
committerYorhel <git@yorhel.nl>2018-08-12 12:22:39 +0200
commit7ca7bb13c3bd79a82b73bdd631399e25fdf6fe81 (patch)
tree2f6801121670b6c4715f0e009cd28b1cb7940fb1 /util
parent900014f99dcfcdd84247070fa6f09bb0b7d855e0 (diff)
Add 1600x900 resolution
https://vndb.org/t950.481 Also, the resolution should really be stored as an ENUM in the database, this integer thing is waay too fragile.
Diffstat (limited to 'util')
-rw-r--r--util/updates/update_20180812.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/updates/update_20180812.sql b/util/updates/update_20180812.sql
new file mode 100644
index 00000000..2e5bbe2c
--- /dev/null
+++ b/util/updates/update_20180812.sql
@@ -0,0 +1,3 @@
+-- New resolution before 1920x1080
+UPDATE releases SET resolution = 16 WHERE resolution = 15;
+UPDATE releases_hist SET resolution = 16 WHERE resolution = 15;