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

@ -52,6 +52,8 @@ const (
Meta TagType = "meta"
Invalid TagType = "invalid"
Copyright TagType = "copyright"
Contributor TagType = "Contributor"
UnknownTagType TagType = "Unknown"
)
const (