Update migration, fixes #3497

pull/3501/head
Daniel Supernault 2022-05-20 20:36:35 -06:00
rodzic 7937686af1
commit 9174d83b64
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

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