Skip to content
Snippets Groups Projects
Commit cdba868e authored by Sebastian Mohr's avatar Sebastian Mohr
Browse files

Small issue with not defined created_by id

parent 74a8f241
No related branches found
No related tags found
No related merge requests found
Pipeline #506237 failed
......@@ -66,7 +66,7 @@ export const SnipDataSchema = type({
`The date when the snippet was last updated. This is set during every change of the snippet via a db trigger. Manual changes are not reflected in the database. ${DateSchema.description}`,
),
"created_by?": IdSchema.describe(
"created_by?": type("number.integer | null").describe(
`The user id of the user who created the snippet. This is set during the first insert of the snippet and can't be changed after afterwards. ${IdSchema.description}`,
),
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment