<?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)
***************************************************************************/
$table_name = 'o_recurrence';
$fields['event_id'] = array('type'=>'INT', 'size'=>'15', 'null'=>'NOT NULL', 'key'=>'PRIMARY KEY');
$fields['type'] = array('type'=>'INT', 'size'=>'1');
$fields['frequency'] = array('type'=>'INT', 'size'=>'11');
$fields['times'] = array('type'=>'INT', 'size'=>'6');
$fields['rstart'] = array('type'=>'INT', 'size'=>'11');
$fields['rend'] = array('type'=>'INT', 'size'=>'11');
$fields['data'] = array('type'=>'VARCHAR', 'size'=>'255');