This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Carefull setup script is slow | |
| -- SETUP SCRIPT :: START -- | |
| DROP TABLE IF EXISTS docs; | |
| CREATE TABLE docs ( | |
| id SERIAL PRIMARY KEY, | |
| type varchar(40) DEFAULT 'pdf' NOT NULL, | |
| status varchar(40) NOT NULL, | |
| sender_reference varchar(40) NOT NULL, | |
| sent_at TIMESTAMPTZ, |