ffzg/recall_notices.pl: added --interval and --dedup
[koha.git] / ffzg / akzg_inventarna_knjiga.sql
1 create table akzg_inventarna_knjiga (
2         id int not null auto_increment primary key,
3         year int not null,
4         num int not null,
5         biblionumber int not null,
6         itemnumber int,
7         last_update timestamp default current_timestamp on update current_timestamp,
8         unique index akzg_inv_br(year,num)
9 );