mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-02 19:26:50 -05:00
20 lines
299 B
SQL
20 lines
299 B
SQL
insert into
|
|
"Build" (
|
|
"ownerId",
|
|
"title",
|
|
"description",
|
|
"modes",
|
|
"headGearSplId",
|
|
"clothesGearSplId",
|
|
"shoesGearSplId"
|
|
)
|
|
values
|
|
(
|
|
@ownerId,
|
|
@title,
|
|
@description,
|
|
@modes,
|
|
@headGearSplId,
|
|
@clothesGearSplId,
|
|
@shoesGearSplId
|
|
) returning * |