We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3171ab2 commit a5d1d46Copy full SHA for a5d1d46
migrations/V117__recommended_maps_and_mods.sql
@@ -0,0 +1,7 @@
1
+-- Add recommended column to map
2
+ALTER TABLE `map`
3
+ ADD COLUMN `recommended` boolean NOT NULL DEFAULT false COMMENT 'Boolean to indicate if a map is a high quality FAF Map' AFTER `games_played`;
4
+
5
+-- Add recommended column to mod
6
+ALTER TABLE `mod`
7
+ ADD COLUMN `recommended` boolean NOT NULL DEFAULT false COMMENT 'Boolean to indicate if a mod is a high quality FAF Mod' AFTER `reviews`;
0 commit comments