From 4f5165ed9c67471e28fbdcd68edd15f85e71e1c0 Mon Sep 17 00:00:00 2001
From: Ernesto Rico Schmidt <ernesto@helsinki.at>
Date: Mon, 24 Jan 2022 17:10:40 -0400
Subject: [PATCH] Remove *_url fields from Host model

---
 program/models.py | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/program/models.py b/program/models.py
index d6c73096..9f85fe5c 100644
--- a/program/models.py
+++ b/program/models.py
@@ -132,13 +132,6 @@ class Host(models.Model):
     email = models.EmailField(_("E-Mail"), blank=True)
     website = models.URLField(_("Website"), blank=True)
     biography = models.TextField(_("Biography"), blank=True, null=True)
-    googleplus_url = models.URLField(_("Google+ URL"), blank=True)
-    facebook_url = models.URLField(_("Facebook URL"), blank=True)
-    twitter_url = models.URLField(_("Twitter URL"), blank=True)
-    linkedin_url = models.URLField(_("LinkedIn URL"), blank=True)
-    youtube_url = models.URLField(_("Youtube URL"), blank=True)
-    dorftv_url = models.URLField(_("DorfTV URL"), blank=True)
-    cba_url = models.URLField(_("CBA URL"), blank=True)
     ppoi = PPOIField('Image PPOI')
     height = models.PositiveIntegerField('Image Height', blank=True, null=True, editable=False)
     width = models.PositiveIntegerField('Image Width', blank=True, null=True, editable=False)
-- 
GitLab