<?php
--
--
Table structure for table `account`
--

CREATE TABLE `account` (
  `
account_id` int(10) unsigned NOT NULL auto_increment,
  `
description` varchar(255) NOT NULL default '',
  `
active` tinyint(1) NOT NULL default '1',
 
PRIMARY KEY  (`account_id`),
 
KEY `IDX_account_active` (`active`)
)
ENGINE=InnoDB DEFAULT CHARSET=utf8;
?>