1
0
mirror of synced 2025-01-06 00:57:10 +03:00
doctrine2/models/ValidatorTest_DateModel.php

8 lines
246 B
PHP
Raw Normal View History

<?php
class ValidatorTest_DateModel extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn('birthday', 'date', null, array('past'));
$this->hasColumn('death', 'date', null, array('future'));
}
}