Skip to content

Commit

Permalink
Add recommended flag for maps and mods (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheikah45 authored May 25, 2021
1 parent 3171ab2 commit a5d1d46
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions migrations/V117__recommended_maps_and_mods.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- Add recommended column to map
ALTER TABLE `map`
ADD COLUMN `recommended` boolean NOT NULL DEFAULT false COMMENT 'Boolean to indicate if a map is a high quality FAF Map' AFTER `games_played`;

-- Add recommended column to mod
ALTER TABLE `mod`
ADD COLUMN `recommended` boolean NOT NULL DEFAULT false COMMENT 'Boolean to indicate if a mod is a high quality FAF Mod' AFTER `reviews`;

0 comments on commit a5d1d46

Please sign in to comment.