Moving the arttags table to tags table part 1
This commit is contained in:
@ -7,6 +7,7 @@ export const tagSchema = z.object({
|
||||
parentId: z.string().nullable().optional(),
|
||||
isParent: z.boolean(),
|
||||
showOnAnimalPage: z.boolean(),
|
||||
isVisible: z.boolean().default(true),
|
||||
|
||||
aliases: z
|
||||
.array(z.string().trim().min(1))
|
||||
@ -19,4 +20,3 @@ export const tagSchema = z.object({
|
||||
|
||||
export type TagFormInput = z.input<typeof tagSchema>;
|
||||
export type TagFormOutput = z.output<typeof tagSchema>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user