pickles/boilerplate/models/SampleModel.php
2011-04-16 22:38:14 -04:00

13 lines
285 B
PHP

<?php
/**
* Same Model
*/
class SampleModel extends Model
{
protected $datasource = 'mysql'; // Name of the datasource in our config
protected $table = 'test'; // Table to interact with from this model
protected $order_by = 'posted_at DESC'; // Columns to order by
}
?>