box-o-sand/php-practice/web-cake/html/app/models/post.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"
)
);
}
?>