column "feature" of relation "deps" does not exist

This commit is contained in:
missing 2022-09-09 13:23:04 -05:00
parent 95c54ae470
commit 31066e6efa

View file

@ -201,8 +201,8 @@ pub async fn new_crate(
query(
r"INSERT INTO deps (
name, version_req, optional, default_features,
target, kind, registry, package, feature, version_id
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)",
target, kind, registry, package, features, version_id
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)",
)
.bind(&dep.base.name)
.bind(&dep.base.version_req.to_string())