mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-12 16:58:37 +00:00
Changed uuid type in database
This commit is contained in:
parent
8137515171
commit
89cd670abf
6 changed files with 5 additions and 11 deletions
|
@ -355,9 +355,6 @@ class EntryController extends Controller
|
|||
{
|
||||
$this->checkUserAction($entry);
|
||||
|
||||
$version = $this->getDoctrine()->getManager()->getConnection()->query('SELECT version();')->fetchColumn();
|
||||
var_dump($version);
|
||||
|
||||
return $this->render(
|
||||
'WallabagCoreBundle:Entry:entry.html.twig',
|
||||
['entry' => $entry]
|
||||
|
|
|
@ -47,7 +47,7 @@ class Entry
|
|||
/**
|
||||
* @var string
|
||||
*
|
||||
* @ORM\Column(name="uuid", type="guid", nullable=true)
|
||||
* @ORM\Column(name="uuid", type="string", length=23, nullable=true)
|
||||
*
|
||||
* @Groups({"entries_for_user", "export_all"})
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue