fix: version history sql (#15321)

This commit is contained in:
Jason Rasmussen 2025-01-13 20:38:11 -05:00 committed by GitHub
parent 3da750117f
commit 36eef9807b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 5 deletions

View file

@ -15,3 +15,11 @@ from
"version_history"
order by
"createdAt" desc
-- VersionHistoryRepository.create
insert into
"version_history" ("version")
values
($1)
returning
*