“Standardwertdatum Symfony Entity” Code-Antworten

Standardwertdatum Symfony Entity

@ORM\Column(name="created_at", type="datetime", options={"default": "CURRENT_TIMESTAMP"})
Dead Dormouse

Standardwertdatum Symfony Entity

/**
 * @Entity
 * @Table(name="...")
 */
class MyEntity
{
    /** @Column(type="datetime") */
    protected $registration_date;

    public function __construct()
    {
        $this->registration_date = new DateTime(); 
    }
}
Dead Dormouse

Ähnliche Antworten wie “Standardwertdatum Symfony Entity”

Fragen ähnlich wie “Standardwertdatum Symfony Entity”

Weitere verwandte Antworten zu “Standardwertdatum Symfony Entity” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen