fix: minor corrections

This commit is contained in:
Benjamin Bellamy 2020-06-08 20:04:49 +02:00 committed by Yassine Doghri
parent ec92e65aa4
commit 13be386842
2 changed files with 2 additions and 2 deletions

View File

@ -30,6 +30,7 @@ class AddCategories extends Migration
'code' => [
'type' => 'VARCHAR',
'constraint' => 1024,
'unique' => true,
],
'apple_category' => [
'type' => 'VARCHAR',

View File

@ -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' => [