X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/4b7f17c8d92bff2e9f495d476a650dc3897c3097..a87694dc525b4eabff11029f1e5401621e2bd3bc:/sql/Pg-upgrade2/automatic_reconciliation.sql diff --git a/sql/Pg-upgrade2/automatic_reconciliation.sql b/sql/Pg-upgrade2/automatic_reconciliation.sql new file mode 100644 index 000000000..924fceb76 --- /dev/null +++ b/sql/Pg-upgrade2/automatic_reconciliation.sql @@ -0,0 +1,14 @@ +-- @tag: automatic_reconciliation +-- @description: Erstellt Tabelle reconiliation_links für den automatischen Kontenabgleich. +-- @depends: release_3_2_0 bank_transactions + +CREATE TABLE reconciliation_links ( + id integer NOT NULL DEFAULT nextval('id'), + bank_transaction_id integer NOT NULL, + acc_trans_id bigint NOT NULL, + rec_group integer NOT NULL, + + PRIMARY KEY (id), + FOREIGN KEY (bank_transaction_id) REFERENCES bank_transactions (id), + FOREIGN KEY (acc_trans_id) REFERENCES acc_trans (acc_trans_id) +);