mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-20 19:05:14 +02:00
Added migration from old Database to new database.
This commit is contained in:
parent
42c8222e35
commit
2f39ac90a2
19 changed files with 391 additions and 31 deletions
|
@ -38,7 +38,7 @@ use Doctrine\ORM\Mapping as ORM;
|
|||
* Class Footprint.
|
||||
*
|
||||
* @ORM\Entity(repositoryClass="App\Repository\StructuralDBElementRepository")
|
||||
* @ORM\Table("footprints")
|
||||
* @ORM\Table("`footprints`")
|
||||
*/
|
||||
class Footprint extends PartsContainingDBElement
|
||||
{
|
||||
|
@ -55,7 +55,7 @@ class Footprint extends PartsContainingDBElement
|
|||
|
||||
/**
|
||||
* @var string
|
||||
* @ORM\Column(type="string")
|
||||
* @ORM\Column(type="string", length=65536)
|
||||
*/
|
||||
protected $filename;
|
||||
|
||||
|
@ -66,7 +66,7 @@ class Footprint extends PartsContainingDBElement
|
|||
|
||||
/**
|
||||
* @var string
|
||||
* @ORM\Column(type="string")
|
||||
* @ORM\Column(type="string", length=65536)
|
||||
*/
|
||||
protected $filename_3d;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue