Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

shema upbdate problem #78

Open
mustaphajamel opened this issue Nov 27, 2016 · 1 comment
Open

shema upbdate problem #78

mustaphajamel opened this issue Nov 27, 2016 · 1 comment

Comments

@mustaphajamel
Copy link

i use for updating the schema doctrine:schema:update
error : No Metadata Classes to process.

here is my Entity code
`<?php
/**

Created by PhpStorm.
User: jamel_pc
Date: 2016-11-27
Time: 9:16 PM
*/
namespace Esprit\ParcBundle\Entity;
use Doctrine\ORM\Mapping as ORM;

/**

Class Modele

@Package ParcBundle\Entity

@Orm\Entity

@Orm\Table(name="Modele")
/
class Modele{
/*
*@Orm\GeneratedValue(strategy="Auto")
*@Orm\Id
@Orm\Column(type="integer")
/
private $id;
/

@Orm\Column(type="string",length=255)
*/

private $Libelle;
/**

@Orm\Column(type="string",length=255)
/
private $Pays;
/
*

@Orm\Column(type="string",length=255)
/
/
*

@return mixed
/
public function getLibelle()
{
return $this->Libelle;
}
/
*

@param mixed $Libelle
/
public function setLibelle($Libelle)
{
$this->Libelle = $Libelle;
}
/
*

@return mixed
/
public function getId()
{
return $this->id;
}
/
*

@param mixed $id
/
public function setId($id)
{
$this->id = $id;
}
/
*

@return mixed
/
public function getPays()
{
return $this->Pays;
}
/
*

@param mixed $Pays
*/
public function setPays($Pays)
{
$this->Pays = $Pays;
}
`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants