Files
gator/sql/queries/feeds.sql
T

15 lines
245 B
SQL
Raw Normal View History

2026-08-01 14:26:19 -05:00
-- name: CreateFeed :one
INSERT INTO feeds (id, created_at, updated_at, name, url, user_id)
VALUES (
$1,
$2,
$3,
$4,
$5,
$6
)
RETURNING *;
-- name: GetAllFeeds :many
SELECT id, created_at, updated_at, name, url, user_id FROM feeds;