<?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['user_id'] = array('type'=>'INT', 'size'=>'6', 'null'=>'NOT NULL', 'key'=>'PRIMARY KEY');
$fields['total_login'] = array('type'=>'INT', 'size'=>'6');
$fields['failed_logins'] = array('type'=>'INT', 'size'=>'6');
$fields['consecutive_fails'] = array('type'=>'INT', 'size'=>'6');
$fields['last_fail'] = array('type'=>'INT', 'size'=>'11');
$fields['password_change'] = array('type'=>'INT', 'size'=>'11');
$fields['password_expire'] = array('type'=>'INT', 'size'=>'11');
$fields['expire_type'] = array('type'=>'ENUM', 'size'=>'\'date\',\'days\'');
$fields['disabled'] = array('type'=>'INT', 'size'=>'11');