Problem creating CRUD with gii

Hi,

Im testing Yii, i have using code igniter for a year but im testing something different.

Anyway, im making a test webapp, y have it configured, runing. I have made two tables, generated the model and CRUD for both. All work fine.

I have a third table. That’s the code for create it

CREATE TABLE IF NOT EXISTS cr.Tipo (

id INT NULL AUTO_INCREMENT ,

nombre VARCHAR(200) NOT NULL ,

descripción TEXT NULL ,

PRIMARY KEY (id) )

ENGINE = InnoDB

Y have created the model and the crud. When i hit in "manage tipo" link i get this:

CException

The column must be specified in the format of "Name:Type:Label", where "Type" and "Label" are optional.

If i try to create a new item, when i submit the link i get the same error.

Any ideas?

First that I could think of is that you used a non standard character in the filed name - descripción

im very shamed, i cant believe is that.

Mdomba, thank you very much, and forgive my mistake… i cant’t belive it

B)

no problem… sometimes happens that the problem is just in front but we cannot see it…

Thanks for the help. I made the same mistake.