* removed a stray debug from usingPackage
[vsc.git] / _tests / models / dummytable.class.php
blob6187f08cd65e4797bc08959edd56a94f20e05ffd
1 <?php
2 usingPackage ('models/foo');
4 class dummyTable extends fooEntityA {
5 protected $_name = 'dummy';
7 public $id;
8 public $payload;
9 public $timestamp;
11 public function __construct () {
12 $this->id = new fooFieldInteger('id');
13 $this->id->setAutoIncrement (true);
15 $this->payload = new fooFieldVarChar ('payload');
16 $this->timestamp = new fooFieldDateTime ('timestamp');
18 $this->setPrimaryKey ($this->id);