#7 - saving feed, but without content

This commit is contained in:
2025-03-11 13:57:16 +02:00
parent 5a7fac748b
commit e89bfba392
6 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
-- name: CreateFeed :one
INSERT INTO feeds (id, created_at, updated_at, user_id, url, name)
VALUES (
$1,
$2,
$3,
$4,
$5,
$6
)
RETURNING *;