prospection_email_log
0 rows where prospect_id = 55
This data as json
0 records
CREATE TABLE prospection_email_log (
id INTEGER PRIMARY KEY AUTOINCREMENT,
prospect_id INTEGER NOT NULL,
email_destinataire TEXT NOT NULL,
sujet TEXT,
statut TEXT DEFAULT "envoye",
erreur TEXT,
envoye_le TEXT,
vague INTEGER DEFAULT 1,
FOREIGN KEY (prospect_id) REFERENCES prospection_scrapping(id)
);