fulfillment_id should not be in request table.

Since fulfillment table has request_id, fulfillment_id shouldn't be in
the request table.
This commit is contained in:
Bradley M. Kuhn 2015-12-30 04:31:37 -08:00
parent 97b5ee5ad0
commit c6b52c42dd

View file

@ -18,7 +18,6 @@ CREATE TABLE "request" (
"request_type_id" integer NOT NULL, "request_type_id" integer NOT NULL,
"request_configuration_id" integer, "request_configuration_id" integer,
"date_requested" date NOT NULL, "date_requested" date NOT NULL,
"fulfillment_id" integer,
"notes" TEXT "notes" TEXT
); );