Модели создаются по пути /Project/models/ИмяКласса.php
К примеру cоздадим /Project/models/Books.php
<?php
defined('PROLOGUE__FRAMEWORK') or die ;
Class Books extends PrModel {
protected function init() {
/*
* Create column in this model table.
*
* $this -> column('field_1.text');
* $this -> column('field_2.int');
* $this -> column('field_3.tinytext');
*
* other types...
*
*/
}
}