M shared/storage/sqlite/query.sql →
shared/storage/sqlite/query.sql
-- name: InsertFile :execlastid
INSERT INTO file (
- url_id, content_type, last_modified, etag, style_hash, title, headers
+ url_id, content_type, last_modified, etag, title, headers
)
VALUES (
@url_id,
@content_type,
@last_modified,
@etag,
- @style_hash,
@title,
@headers
);