diff --git a/database/migrations/2019_11_12_112610_create_files_table.php b/database/migrations/2019_11_12_112610_create_files_table.php
index ea8f339..d537172 100644
--- a/database/migrations/2019_11_12_112610_create_files_table.php
+++ b/database/migrations/2019_11_12_112610_create_files_table.php
@@ -13,7 +13,7 @@ class CreateFilesTable extends Migration
      */
     public function up()
     {
-        Schema::create('=swp_files', function (Blueprint $table) {
+        Schema::create('swp_files', function (Blueprint $table) {
             $table->string('id', 32);
             $table->string('categories_file', 32);
             $table->string('title');
@@ -34,6 +34,6 @@ class CreateFilesTable extends Migration
      */
     public function down()
     {
-        Schema::dropIfExists('=swp_files');
+        Schema::dropIfExists('swp_files');
     }
 }