<?php
/**************************************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
@Authors: Ryan Thompson(hide@address.com)
***************************************************************************/
$fields['id'] = array('type'=>'INT', 'size'=>'11', 'null'=>'NOT NULL', 'key'=>'PRIMARY KEY', 'extra'=>'AUTO_INCREMENT');
$fields['holiday'] = array('type'=>'VARCHAR', 'size'=>'255');
$fields['day'] = array('type'=>'INT', 'size'=>'2');
$fields['month'] = array('type'=>'INT', 'size'=>'2');
$fields['country'] = array('type'=>'INT', 'size'=>'3');
$fields['statutory'] = array('type'=>'INT', 'size'=>'1');
$fields['occurrence'] = array('type'=>'VARCHAR', 'size'=>'255');
$fields['special'] = array('type'=>'INT', 'size'=>'1');