addColumn("schedule", "holidaysallowance", "int4");
addColumn("schedule", "holidayscountry", "varchar(8)");
addColumn("schedule", "holidaysprovince", "varchar(8)");
// Create the standard holidays
Deserializer holidayReader = CsvIOFactory.createFactory(Holiday.class).createDeserializer();
holidayReader.open(new InputStreamReader(this.getClass().getResourceAsStream("holidays_de.csv")));
while (holidayReader.hasNext())
{
Holiday holiday = holidayReader.next();
update("INSERT INTO holiday (id,name,country,province,day,month,year) values (?,?,?,?,?,?,?)",
new Object[]
{
createKeelId("Holiday"), holiday.getName(), holiday.getCountry(),