sendou.ink/app/db/models/plusVotes/create.sql
2022-08-16 00:29:32 +03:00

20 lines
234 B
SQL

insert into
"PlusVote" (
"month",
"year",
"tier",
"authorId",
"votedId",
"score",
"validAfter"
)
values
(
@month,
@year,
@tier,
@authorId,
@votedId,
@score,
@validAfter
)