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
Showing only changes of commit b5135f795a - Show all commits

View File

@ -0,0 +1,4 @@
-- +migrate Up
INSERT INTO tag_types (name) VALUES ('Contributor');
INSERT INTO tag_types (name) VALUES ('Unknown');

View File

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