rel_3_0 moved to HEAD (introducing new files)
[koha.git] / misc / migration_tools / 22_to_30 / biblio_framework.sql
1 alter table biblio add frameworkcode char(4);
2 update biblio,marc_biblio set biblio.frameworkcode=marc_biblio.frameworkcode where marc_biblio.biblionumber=biblio.biblionumber;
3 alter table biblioitems add marcxml text;
4 alter table biblioitems add lcsort varchar(25);
5 alter table items add onloan date;
6 alter table items add Cutterextra varchar(45);