sendou.ink/app/db/models/builds/createBuild.sql
2022-09-03 18:14:53 +03:00

20 lines
299 B
SQL

insert into
"Build" (
"ownerId",
"title",
"description",
"modes",
"headGearSplId",
"clothesGearSplId",
"shoesGearSplId"
)
values
(
@ownerId,
@title,
@description,
@modes,
@headGearSplId,
@clothesGearSplId,
@shoesGearSplId
) returning *