Fixed schema issue for import value foreign key being set wrong

This commit is contained in:
Tom Bloor 2017-11-21 11:13:04 +00:00
parent 13cd5ed950
commit fc0d2f6fa0
No known key found for this signature in database
GPG key ID: 4657C7EBE42CC5CC
5 changed files with 5 additions and 5 deletions

View file

@ -220,7 +220,7 @@ CREATE TABLE "import_values" (
"purchase_date" timestamp NOT NULL,
"purchase_value" character varying(255) NOT NULL,
"org_name" character varying(255) NOT NULL,
"transaction_id" character varying,
"transaction_id" integer,
"ignore_value" boolean DEFAULT false NOT NULL,
PRIMARY KEY ("id")
);