mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update migration, fixes #3497
This commit is contained in:
parent
7937686af1
commit
9174d83b64
1 changed files with 2 additions and 0 deletions
|
@ -16,6 +16,8 @@ class CreateConversationsTable extends Migration
|
||||||
*/
|
*/
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
|
Schema::dropIfExists('conversations');
|
||||||
|
|
||||||
Schema::create('conversations', function (Blueprint $table) {
|
Schema::create('conversations', function (Blueprint $table) {
|
||||||
$table->bigIncrements('id');
|
$table->bigIncrements('id');
|
||||||
$table->bigInteger('to_id')->unsigned()->index();
|
$table->bigInteger('to_id')->unsigned()->index();
|
||||||
|
|
Loading…
Reference in a new issue