<?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_notebook';
$fields['note_id'] = array('type'=>'INT', 'size'=>'15', 'null'=>'NOT NULL', 'key'=>'PRIMARY KEY','extra'=>'AUTO_INCREMENT');
$fields['user_id'] = array('type'=>'INT', 'size'=>'6', 'key'=>'INDEX');
$fields['title'] = array('type'=>'VARCHAR', 'size'=>'150');
$fields['note'] = array('type'=>'TEXT');
$fields['posted'] = array('type'=>'INT', 'size'=>'11');