initial ideas

This commit is contained in:
2024-09-11 16:50:06 +10:00
parent d86f542f34
commit a5196bb321
11 changed files with 222 additions and 0 deletions

11
vm/query.sql Normal file
View File

@@ -0,0 +1,11 @@
-- name: Get :one
select * from "vm" where "Name" = ?;
-- name: List :many
select * from "vm" order by "Name";
-- name: Create :execresult
insert into "vm" (
"Name", "Vcenter"
)
values(?, ?);