diff --git a/application/Voiceplan/Voiceplan.php b/application/Voiceplan/Voiceplan.php index c2866e3a6..6a1257506 100644 --- a/application/Voiceplan/Voiceplan.php +++ b/application/Voiceplan/Voiceplan.php @@ -19,7 +19,7 @@ class Voiceplan extends mfBaseModel { $i = 0; $filename = $file->getFullPath(); $input = fopen($filename, "r"); - while($csv = fgetcsv($input, 0, ",")) { + while($csv = fgetcsv($input, 0, ";")) { $i++; if($i == 1) continue; @@ -95,7 +95,7 @@ class Voiceplan extends mfBaseModel { $i = 0; $filename = $file->getFullPath(); $input = fopen($filename, "r"); - while($csv = fgetcsv($input, 0, ",")) { + while($csv = fgetcsv($input, 0, ";")) { $i++; if($i == 1) continue; diff --git a/db/migrations/20231004143109_add_voicenumber_tables.php b/db/migrations/20231004143109_add_voicenumber_tables.php index 51d89e15d..ea62bbdb3 100644 --- a/db/migrations/20231004143109_add_voicenumber_tables.php +++ b/db/migrations/20231004143109_add_voicenumber_tables.php @@ -46,7 +46,7 @@ final class AddVoicenumberTables extends AbstractMigration $table = $this->table("Voiceplan"); $table->addColumn("name", "string", ["null" => false, "limit" => 64]); - $table->addColumn("comment", "text", ["null" => true, "default" => null]); + $table->addColumn("description", "text", ["null" => true, "default" => null]); $table->addColumn("source", "string", ["null" => true, "default" => null, "limit" => 255]); $table->addColumn("source_id", "string", ["null" => true, "default" => null, "limit" => 255]); $table->addColumn("increment_first", "integer", ["null" => false, "default" => 1]);