Skip to content
Snippets Groups Projects
Commit f4784e87 authored by Benjamin Bellamy's avatar Benjamin Bellamy :speech_balloon: Committed by Ben
Browse files

feat: Minor corrections to some tables…

parent 45a23f3e
No related branches found
No related tags found
No related merge requests found
.DS_Store 0 → 100644
File added
......@@ -12,8 +12,19 @@ class AddLanguages extends Migration
$this->forge->addField([
'code' => [
'type' => 'VARCHAR',
'comment' => 'ISO 639-1 language code.',
'constraint' => 2,
],
'name' => [
'type' => 'VARCHAR',
'comment' => 'English language name.',
'constraint' => 191,
],
'native_name' => [
'type' => 'VARCHAR',
'comment' => 'Native language name.',
'constraint' => 191,
],
]);
$this->forge->addKey('code', true);
$this->forge->createTable('languages');
......
......@@ -34,10 +34,6 @@ class AddPodcasts extends Migration
'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.',
'null' => true,
],
'episode_description_footer' => [
'type' => 'TEXT',
'null' => true,
],
'image' => [
'type' => 'VARCHAR',
'constraint' => 1024,
......@@ -102,8 +98,14 @@ class AddPodcasts extends Migration
'default' => 0,
'comment' => 'The podcast update status. If you will never publish another episode to your show, use this tag. Specifying the <itunes:complete> tag with a Yes value indicates that a podcast is complete and you will not post any more episodes in the future. Specifying any value other than Yes has no effect.',
],
'episode_description_footer' => [
'type' => 'TEXT',
'comment' => 'The text that will be added in every episode description (show notes).',
'null' => true,
],
'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.)',
'null' => true,
],
'created_at' => [
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment