15 lines
330 B
PHP
15 lines
330 B
PHP
<?php
|
|
|
|
namespace Ulmus\Annotation\Property\Field;
|
|
|
|
class UpdatedAt extends \Ulmus\Annotation\Property\Field {
|
|
|
|
public function __construct()
|
|
{
|
|
$this->nullable = true;
|
|
$this->type = "timestamp";
|
|
$this->attributes['update'] = "CURRENT_TIMESTAMP";
|
|
$this->attributes['default'] = null;
|
|
}
|
|
}
|