]> Untitled Git - lemmy.git/commitdiff
Fix missing sorting types (#3370)
authorc-andy-candies <74613851+c-andy-candies@users.noreply.github.com>
Wed, 28 Jun 2023 16:44:16 +0000 (18:44 +0200)
committerGitHub <noreply@github.com>
Wed, 28 Jun 2023 16:44:16 +0000 (12:44 -0400)
* Fix missing sorting types

* Reordered sort_type_enum

migrations/2023-06-20-191145_add_listingtype_sorttype_3_6_9_months_enums/down.sql

index f8493fd2674c460bad89d1e59a3abe5163aba19a..5b135223e2410846e9186d1a01a27923a27053df 100644 (file)
@@ -4,7 +4,7 @@ update local_user set default_sort_type = 'TopDay' where default_sort_type in ('
 -- rename the old enum
 alter type sort_type_enum rename to sort_type_enum__;
 -- create the new enum
-CREATE TYPE sort_type_enum AS ENUM ('Active', 'Hot', 'New', 'Old', 'TopDay', 'TopWeek', 'TopMonth', 'TopYear', 'TopAll', 'MostComments', 'NewComments');
+CREATE TYPE sort_type_enum AS ENUM ('Active', 'Hot', 'New', 'Old', 'TopDay', 'TopWeek', 'TopMonth', 'TopYear', 'TopAll', 'MostComments', 'NewComments', 'TopHour', 'TopSixHour', 'TopTwelveHour');
 
 -- alter all you enum columns
 alter table local_user