1
0
Daniel Supernault 3 жил өмнө
parent
commit
9174d83b64

+ 2 - 0
database/migrations/2022_04_20_061915_create_conversations_table.php

@@ -16,6 +16,8 @@ class CreateConversationsTable extends Migration
      */
     public function up()
     {
+    	Schema::dropIfExists('conversations');
+
         Schema::create('conversations', function (Blueprint $table) {
             $table->bigIncrements('id');
             $table->bigInteger('to_id')->unsigned()->index();