sendou.ink/app/db/models/builds/createBuild.sql
2023-04-23 11:55:00 +03:00

23 lines
329 B
SQL

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