Skip to content

Commit

Permalink
feat(prisma): add "resort" season name
Browse files Browse the repository at this point in the history
It seems as if "resort" is a valid season name [[1]] that is widely
accepted and even published on Vogue [[2]].

[1]: https://www.highsnobiety.com/p/why-are-resort-cruise-pre-collections-important/
[2]: https://www.vogue.com/fashion-shows/resort-2024
  • Loading branch information
nicholaschiang committed Jul 25, 2023
1 parent 852c587 commit 13e359f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterEnum
ALTER TYPE "SeasonName" ADD VALUE 'RESORT';
1 change: 1 addition & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,7 @@ model Link {
// A widely accepted and used season name.
// @todo perhaps SPRING_SUMMER should instead be stored as [SPRING, SUMMER]?
enum SeasonName {
RESORT
SPRING
SPRING_SUMMER
SUMMER
Expand Down

0 comments on commit 13e359f

Please sign in to comment.