Koha/misc/notifys/attempted_contacts.sql
rangi d8bbc4ec5c Scripts to deal with overdues.
fines.pl will levy fines and place them on patrons accounts, it will also then attempt to notify
the borrowers.
Either by email, sms, fax etc depending on what the patron has set as preferred contact.
Email and letters are currently working fine, fax, and sms need to be worked on.

Test with caution in your library, you dont want to be bombarding patrons with emails :)
2004-03-05 21:22:15 +00:00

19 lines
441 B
SQL

-- MySQL dump 9.08
--
-- Host: localhost Database: Koha
---------------------------------------------------------
-- Server version 4.0.13-log
--
-- Table structure for table 'attempted_contacts'
--
CREATE TABLE attempted_contacts (
borrowernumber int(11) default NULL,
method varchar(50) default NULL,
address varchar(255) default NULL,
result int(11) default NULL,
message text,
date datetime default NULL
) TYPE=MyISAM;