und DAs ${dB
} isT unNÖtiG
This commit is contained in:
parent
4369aaf1dd
commit
a5ee6313d6
|
@ -49,18 +49,19 @@ export default router => {
|
||||||
insert into "tags" ${
|
insert into "tags" ${
|
||||||
db({
|
db({
|
||||||
tag: tagname
|
tag: tagname
|
||||||
}, 'tag')
|
})
|
||||||
}
|
}
|
||||||
returning id
|
returning id
|
||||||
`)[0];
|
`)[0].id;
|
||||||
}
|
}
|
||||||
|
|
||||||
await db`
|
await db`
|
||||||
insert into "tags_assign" ${
|
insert into "tags_assign" ${
|
||||||
db({
|
db({
|
||||||
tag_id: +tagid,
|
tag_id: +tagid,
|
||||||
item_id: +postid,
|
item_id: +postid,
|
||||||
user_id: +req.session.id
|
user_id: +req.session.id
|
||||||
}, 'tag_id', 'item_id', 'user_id')
|
})
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
|
@ -98,7 +99,7 @@ export default router => {
|
||||||
item_id: +postid,
|
item_id: +postid,
|
||||||
tag_id: 1,
|
tag_id: 1,
|
||||||
user_id: +req.session.id
|
user_id: +req.session.id
|
||||||
}, 'item_id', 'tag_id', 'user_id')
|
})
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
@ -106,7 +107,7 @@ export default router => {
|
||||||
// update
|
// update
|
||||||
await db`
|
await db`
|
||||||
update "tags_assign"
|
update "tags_assign"
|
||||||
set tag_id = ${db`(array[2,1])[tag_id]`}
|
set tag_id = (array[2,1])[tag_id]
|
||||||
where tag_id = any(array[1,2])
|
where tag_id = any(array[1,2])
|
||||||
and item_id = ${+postid}
|
and item_id = ${+postid}
|
||||||
`;
|
`;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user