Under System -> Configuration -> Content Management, "Enable WYSIWYG Editor" choose "Disable by Default".
you only need to change the 'label' of content field in form.php file
so your description field looks like
$fieldset->addField('content', 'editor', array(
'name' => 'content',
'label' => Mage::helper('videoblog')->__('Description'),
'title' => Mage::helper('videoblog')->__('Description'),
'style' => 'width:500px; height:200px;',
'config' => Mage::getSingleton('cms/wysiwyg_config')->getConfig(),
'wysiwyg' => true,
'required' => true,
));
even though if you dont want to used the field of content then you can create new field in database using below script.
create script mysql4-upgrade-0.1.0-0.1.1.php //if your module version 0.1.0 (to 0.1.1 update version in script file)
<?php
$installer = $this;
$installer->startSetup();
$installer->run("
ALTER TABLE {$this->getTable('video')} ADD description varchar(255) NULL ;
");
$installer->endSetup();
open your etc/config.xml and change the version to 0.1.1 save file.
hope this help
OpenSource Expert | OpenSource Technologies | www.opensourcetechnologies.com
Magento plugins released: http://www.opensourcetechnologies.com/product/product-category/magento-extensions