Bug 7977: Quote-of-the-day (QOTD) Feature for OPAC
[koha.git] / installer / data / mysql / atomicupdate / 0009-patron-attr-display-checkout.pl
1 #! /usr/bin/perl
2 use strict;
3 use warnings;
4 use C4::Context;
5 my $dbh=C4::Context->dbh;
6 $dbh->do("ALTER TABLE borrower_attribute_types ADD COLUMN `display_checkout` TINYINT(1) NOT NULL DEFAULT '0';");
7 print "Upgrade done (Added a display_checkout field in borrower_attribute_types table)\n";