YII2: Standardwerte für alle Attribute eines Modells festlegen

$customer = new Customer();
$customer->loadDefaultValues();
// $customer->xyz will be assigned the default value declared when defining the "xyz" column
Wicked Worm