Skip to content

Commit

Permalink
Remove increment not required (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
musonza authored Jul 22, 2019
1 parent 0104a62 commit a3ffc22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_chat_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function up()
});

Schema::create('mc_conversation_user', function (Blueprint $table) {
$table->bigIncrements('user_id')->unsignedBigIntegers();
$table->integer('user_id')->unsignedBigIntegers();
$table->integer('conversation_id')->unsignedBigIntegers();
$table->primary(['user_id', 'conversation_id']);
$table->timestamps();
Expand Down

0 comments on commit a3ffc22

Please sign in to comment.