Warning After Adding New Column To Mysql Table

i had one table previously i.e. yii_tbl_item with columns id,name description but afterwards i added one more column as categoryid

but now i am getting below error

YiiBase::include(CategoryID.php) [<a href=‘function.YiiBase-include’>function.YiiBase-include</a>]: failed to open stream: No such file or directory

I also made changes in model file for rules(),attributeLabels(),search() methods.

public function rules()

{


	// NOTE: you should only define rules for those attributes that


	// will receive user inputs.


	return array(


		array('CategoryID', 'numerical', 'integerOnly'=&gt;true),


		array('Price', 'numerical'),


		array('Name', 'length', 'max'=&gt;255),


		array('Description', 'safe'),			


		// The following rule is used by search().


		// @todo Please remove those attributes that should not be searched.


		array('id, Name, Description, Price','CategoryID', 'safe', 'on'=&gt;'search'),


	);


}

public function attributeLabels()

{


	return array(


		'id' =&gt; 'ID',


		'Name' =&gt; 'Name',


		'Description' =&gt; 'Description',


		'Price' =&gt; 'Price',


		'CategoryID' =&gt; 'CategoryID',


	);


}








public function search()


{


	// @todo Please modify the following code to remove attributes that should not be searched.


	&#036;criteria=new CDbCriteria;


	&#036;criteria-&gt;compare('id',&#036;this-&gt;id);


	&#036;criteria-&gt;compare('Name',&#036;this-&gt;Name,true);


	&#036;criteria-&gt;compare('Description',&#036;this-&gt;Description,true);


	&#036;criteria-&gt;compare('Price',&#036;this-&gt;Price);


	&#036;criteria-&gt;compare('CategoryID',&#036;this-&gt;CategoryID);


	return new CActiveDataProvider(&#036;this, array(


		'criteria'=&gt;&#036;criteria,


	));


}

Hi,

problem is here…

[color=#1C2837][size=2]array(‘id, Name, Description, Price’,‘CategoryID’, ‘safe’, ‘on’=>‘search’),[/size][/color]

[color=#1C2837][size=2]

[/size][/color]

[color=#1C2837][size=2]you have to change your code like this[/size][/color]

[color=#1C2837][size=2]

[/size][/color]

[color=#1C2837][size=2]array(‘id, Name, Description, Price, [/size][/color][color=#1C2837][size=2]CategoryID[/size][/color][color=#1C2837][size=2]’, ‘safe’, ‘on’=>‘search’),[/size][/color]

[color=#1C2837][size=2]

[/size][/color]

Thank You…:)