Skip to content

Commit 258ea6a

Browse files
committed
Wrap READ and WRITE columns in quotes
Fixes #62
1 parent e7a07d2 commit 258ea6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Entity/ElFinderFile.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ class ElFinderFile
5959
/**
6060
* @var string
6161
*
62-
* @ORM\Column(name="read", type="string", nullable=false)
62+
* @ORM\Column(name="`read`", type="string", nullable=false)
6363
*/
6464
protected $read;
6565

6666
/**
6767
* @var string
6868
*
69-
* @ORM\Column(name="write", type="string", nullable=false)
69+
* @ORM\Column(name="`write`", type="string", nullable=false)
7070
*/
7171
protected $write;
7272

0 commit comments

Comments
 (0)