File: /www/exchange2/sql/archive/storage_settings.sql
CREATE TABLE storages (
name VARCHAR(64) NOT NULL,
description VARCHAR(255) NOT NULL,
driver VARCHAR(64) NOT NULL DEFAULT 'local',
config VARCHAR(1024) DEFAULT NULL,
PRIMARY KEY (name)
)
ENGINE = INNODB
CHARACTER SET utf8
COLLATE utf8_general_ci;
INSERT INTO storages VALUES
('c-etr-invoices', 'C-ETR invoices', 'local', '{"root_path":""}'),
('c-purchase-orders', 'C-Purchase orders', 'local', '{"root_path":""}'),
('cheatsheet', 'Cheatsheets', 'local', NULL),
('creditor-documents', 'Creditor documents', 'local', '{"root_path":""}'),
('d-etr-invoices', 'D-ETR invoices', 'local', '{"root_path":""}'),
('d-purchase-orders', 'D-Purchase orders', 'local', '{"root_path":""}'),
('debtor-documents', 'Debtor documents', 'local', '{"root_path":""}'),
('intermediary-documents', 'Intermediary documents', 'local', '{"root_path":""}'),
('investor-documents', 'Investor documents', 'local', '{"root_path":""}'),
('transaction-documents', 'Transaction documents', 'local', '{"root_path":""}'),
('originator-documents', 'Originator documents', 'local', '{"root_path":""}'),
('other', 'Other documents', 'local', '{"root_path":""}'),
('rpa', 'RPA support document', 'local', '{"root_path":""}'),
('noa', 'Stamped invoice with "NOTICE OF OWNERSHIP & ASSIGNMENT OF STAMPED INVOICES"', 'local', '{"root_path":""}'),
('noi', 'Only "NOTICE OF OWNERSHIP & ASSIGNMENT OF STAMPED INVOICES"', 'local', '{"root_path":""}'),
('rsa', 'RSA suport documents', 'local', '{"root_path":""}'),
('auws', 'AUWS invoices and logs', 'local', '{"root_path":""}');