mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 13:19:31 -05:00
18 lines
258 B
SQL
18 lines
258 B
SQL
insert into
|
|
"CalendarEvent" (
|
|
"name",
|
|
"authorId",
|
|
"tags",
|
|
"description",
|
|
"discordInviteCode",
|
|
"bracketUrl"
|
|
)
|
|
values
|
|
(
|
|
@name,
|
|
@authorId,
|
|
@tags,
|
|
@description,
|
|
@discordInviteCode,
|
|
@bracketUrl
|
|
) returning * |