feat: Add new tag types #22

Merged
SoXX merged 2 commits from feature/more-tag-types into main 2024-12-28 21:32:03 +00:00
2 changed files with 14 additions and 8 deletions

View File

@ -0,0 +1,4 @@
-- +migrate Up
ALTER TYPE TagType ADD VALUE 'Contributor';
ALTER TYPE TagType ADD VALUE 'Unknown';

View File

@ -44,14 +44,16 @@ const (
) )
const ( const (
General TagType = "general" General TagType = "general"
Species TagType = "species" Species TagType = "species"
Character TagType = "character" Character TagType = "character"
Artist TagType = "artist" Artist TagType = "artist"
Lore TagType = "lore" Lore TagType = "lore"
Meta TagType = "meta" Meta TagType = "meta"
Invalid TagType = "invalid" Invalid TagType = "invalid"
Copyright TagType = "copyright" Copyright TagType = "copyright"
Contributor TagType = "Contributor"
UnknownTagType TagType = "Unknown"
) )
const ( const (