Browse Source

Fix non-null default value

Jordi Boggiano 13 years ago
parent
commit
152d66bb48
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Packagist/WebBundle/Entity/Package.php

+ 1 - 1
src/Packagist/WebBundle/Entity/Package.php

@@ -97,7 +97,7 @@ class Package
     /**
      * @ORM\Column(type="boolean")
      */
-    private $autoUpdated;
+    private $autoUpdated = false;
 
     private $entityRepository;
     private $repositoryClass;