php - Cake bake don't generate auto rules -


i'm newbie in cakephp , i'm generating model's code bake. code generated dont give array auto validations. why not? fields not null, id, title , content fields. sorry bad english, , much.

my table:

create table `pages` (   `id` int(11) not null auto_increment,   `title` varchar(500) not null,   `content` text not null,   primary key (`id`) ) engine=innodb; 

automatically cakephp bake doesn't create validation rules models. provides interactive shell create models , validation rules and/or relationships. more info in docs


Comments

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

gradle error "Cannot convert the provided notation to a File or URI" -

python - NameError: name 'subprocess' is not defined -