From bf931483b4140b53d95a30a93808bfc118ed18c9 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rapha=C3=ABl=20Gertz?= <git@rapsys.eu>
Date: Wed, 24 Feb 2021 01:17:11 +0100
Subject: [PATCH] Add class, contact, donate, link and profile fields

---
 Resources/config/doctrine/Snippet.orm.yml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/Resources/config/doctrine/Snippet.orm.yml b/Resources/config/doctrine/Snippet.orm.yml
index a6e9165..4b172d6 100644
--- a/Resources/config/doctrine/Snippet.orm.yml
+++ b/Resources/config/doctrine/Snippet.orm.yml
@@ -15,6 +15,25 @@ Rapsys\AirBundle\Entity\Snippet:
             length: 2
         description:
             type: text
+        class:
+            type: text
+            nullable: true
+        contact:
+            type: string
+            length: 254
+            nullable: true
+        donate:
+            type: string
+            length: 254
+            nullable: true
+        link:
+            type: string
+            length: 254
+            nullable: true
+        profile:
+            type: string
+            length: 254
+            nullable: true
         created:
             type: datetime
         updated:
-- 
2.41.1