FFZG HNB rate export changed to list / exchange istead of *
[koha_ffzg] / ffzg / discharge / ffzg_discharge.sql
1 create table ffzg_discharges (
2         id int not null auto_increment, 
3         discharge_id int(11),
4         borrower int(11),
5     needed timestamp,
6     validated timestamp,
7     firstname text,
8     surname text,
9     userid text,
10     oib text,
11     jmbag text,
12     k_borrowernumber int(11),
13     k_firstname text,
14     k_surname text,
15     k_userid text,
16     primary key(id)
17 );