Add unique index to likes migration

pull/9/head
Daniel Supernault 2018-04-29 10:29:01 -06:00
rodzic d641f2b453
commit 594576185b
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -19,6 +19,7 @@ class CreateLikesTable extends Migration
$table->bigInteger('status_id')->unsigned();
// Flag to remove spammy profile_ids
$table->boolean('flagged')->default(false);
$table->unique(['profile_id', 'status_id']);
$table->timestamps();
});
}