18 lines
378 B
PHP
18 lines
378 B
PHP
<?php
|
|
|
|
namespace Ulmus\Annotation\Property\Field;
|
|
|
|
class Id extends \Ulmus\Annotation\Property\Field {
|
|
|
|
public function __construct()
|
|
{
|
|
$this->nullable = false;
|
|
$this->attributes['unsigned'] = true;
|
|
$this->attributes['primary_key'] = true;
|
|
$this->attributes['auto_increment'] = true;
|
|
|
|
parent::__construct('int');
|
|
}
|
|
|
|
}
|