1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/models/NotNullTest.php

8 lines
248 B
PHP

<?php
class NotNullTest extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn('name', 'string', 100, 'notnull');
$this->hasColumn('type', 'integer', 11);
}
}