feat: Add new tag types
Some checks failed
Gitea Build Check / Build (pull_request) Failing after 51s

- Contributor
- Unknown
This commit is contained in:
SoXX 2024-12-28 22:06:47 +01:00
parent da76e6215d
commit b5135f795a
2 changed files with 14 additions and 8 deletions

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 (