Resolve "CMB - Data migration for Carfix data" #1355

Closed
korina.cordero wants to merge 57 commits from 460-cmb-data-migration-for-carfix-data into 424-cmb-release
Showing only changes of commit c2e10a12e6 - Show all commits

View file

@ -5,6 +5,8 @@ namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
use DateTime;
/**
* @ORM\Entity
* @ORM\Table(name="notification", indexes={@ORM\Index(columns={"user_id"})})
@ -63,6 +65,7 @@ class Notification
public function __construct()
{
$this->date_create = new DateTime();
$this->flag_read = false;
$this->flag_fresh = true;
}