From 36c5cd8f92f1c6395cd4b938fa5d21e192847642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20Gyula?= Date: Sun, 13 Mar 2016 12:51:06 +0100 Subject: [PATCH] doctrine mapping --- Resources/config/doctrine/Event.orm.yml | 47 +++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 Resources/config/doctrine/Event.orm.yml diff --git a/Resources/config/doctrine/Event.orm.yml b/Resources/config/doctrine/Event.orm.yml new file mode 100644 index 0000000..ba3ad13 --- /dev/null +++ b/Resources/config/doctrine/Event.orm.yml @@ -0,0 +1,47 @@ +AncaRebeca\FullCalendarBundle\Model\Event: + type: mappedSuperclass + fields: + title: + type: string + allDay: + type: boolean + startDate: + type: datetime + endDate: + type: datetime + url: + type: string + nullable: true + className: + type: string + nullable: true + editable: + type: boolean + startEditable: + type: boolean + durationEditable: + type: boolean + rendering: + nullable: true + type: string + overlap: + type: boolean + constraint: + type: integer + column: const + nullable: true + source: + nullable: true + type: string + color: + nullable: true + type: string + backgroundColor: + nullable: true + type: string + textColor: + nullable: true + type: string + customFields: + nullable: true + type: array