16 lines
245 B
PHP
16 lines
245 B
PHP
<?php
|
|
|
|
class Post extends AppModel {
|
|
public $name = "Post";
|
|
public $validate = array(
|
|
"title" => array(
|
|
"rule" => "notEmpty"
|
|
),
|
|
"body" => array(
|
|
"rule" => "notEmpty"
|
|
)
|
|
);
|
|
}
|
|
|
|
?>
|