Daniel Supernault преди 3 години
родител
ревизия
9174d83b64
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      database/migrations/2022_04_20_061915_create_conversations_table.php

+ 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();