From 469bed53b8737211df1d833d5995d78640594c6e Mon Sep 17 00:00:00 2001 From: missing Date: Fri, 9 Sep 2022 18:40:13 -0500 Subject: [PATCH] crates from other registries do exist --- src/create.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/create.sql b/src/create.sql index 0dd7667..239434b 100644 --- a/src/create.sql +++ b/src/create.sql @@ -47,7 +47,7 @@ CREATE TYPE dependency_kind AS ENUM ( CREATE TABLE IF NOT EXISTS deps ( id int NOT NULL UNIQUE GENERATED ALWAYS AS IDENTITY PRIMARY KEY, - name text NOT NULL REFERENCES crates (name), + name text NOT NULL, version_req text NOT NULL, optional boolean NOT NULL, default_features boolean NOT NULL,