BREAKING CHANGE: V2 of thr SDK #12

Merged
fenpaws merged 124 commits from develop/postgresql into main 2024-07-01 20:46:28 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit e09d39dd02 - Show all commits

View File

@ -12,7 +12,8 @@ CREATE TYPE TagType AS ENUM (
'artist',
'lore',
'meta',
'invalid'
'invalid',
'copyright'
);
CREATE TABLE "Post"

View File

@ -20,6 +20,7 @@ const (
Lore TagType = "lore"
Meta TagType = "meta"
Invalid TagType = "invalid"
Copyright TagType = "copyright"
)
func (r *Rating) Convert(e621Rating string) {