\DBUtil::create_table('news', array(
'id' => array(
'type' => 'int',
'constraint' => 5,
'auto_increment' => true,
'unsigned' => true
),
'title' => array('type' => 'varchar', 'constraint' => 100),
'body' => array('type' => 'text'),
'datetime' => array('type' => 'datetime')
), array('id'), false, 'MyISAM', 'utf8_unicode_ci');
It looks like you're new here. If you want to get involved, click one of these buttons!