From 13be386842e94d9def1f7de4720931d8f6935171 Mon Sep 17 00:00:00 2001
From: Benjamin Bellamy <ben@podlibre.org>
Date: Mon, 8 Jun 2020 20:04:49 +0200
Subject: [PATCH] fix: minor corrections

---
 app/Database/Migrations/2020-05-29-152000_add_categories.php | 1 +
 app/Database/Migrations/2020-05-30-101500_add_podcasts.php   | 3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/Database/Migrations/2020-05-29-152000_add_categories.php b/app/Database/Migrations/2020-05-29-152000_add_categories.php
index 86f062ce47..c9e5604a93 100644
--- a/app/Database/Migrations/2020-05-29-152000_add_categories.php
+++ b/app/Database/Migrations/2020-05-29-152000_add_categories.php
@@ -30,6 +30,7 @@ class AddCategories extends Migration
             'code' => [
                 'type' => 'VARCHAR',
                 'constraint' => 1024,
+                'unique' => true,
             ],
             'apple_category' => [
                 'type' => 'VARCHAR',
diff --git a/app/Database/Migrations/2020-05-30-101500_add_podcasts.php b/app/Database/Migrations/2020-05-30-101500_add_podcasts.php
index fae5b0f9b3..6598d0697b 100644
--- a/app/Database/Migrations/2020-05-30-101500_add_podcasts.php
+++ b/app/Database/Migrations/2020-05-30-101500_add_podcasts.php
@@ -38,7 +38,6 @@ class AddPodcasts extends Migration
             ],
             'description' => [
                 'type' => 'TEXT',
-                'null' => true,
                 'comment' =>
                     'The show description. Where description is text containing one or more sentences describing your podcast to potential listeners. The maximum amount of text allowed for this tag is 4000 characters. To include links in your description or rich HTML, adhere to the following technical guidelines: enclose all portions of your XML that contain embedded HTML in a CDATA section to prevent formatting issues, and to ensure proper link functionality.',
             ],
@@ -126,7 +125,7 @@ class AddPodcasts extends Migration
             'custom_html_head' => [
                 'type' => 'TEXT',
                 'comment' =>
-                    'The HTML code that will be added to evey page for this podcast. (You could add Google Analytics tracking code here for instance.)',
+                    'The HTML code that will be added to every page for this podcast. (You could add Google Analytics tracking code here for instance.)',
                 'null' => true,
             ],
             'created_at' => [
-- 
GitLab