mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-25 22:43:18 +00:00
Fix migration
This commit is contained in:
parent
fb89814670
commit
9289792ad8
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ class CreateDirectMessagesTable extends Migration
|
|||
$table->bigInteger('from_id')->unsigned()->index();
|
||||
$table->string('from_profile_ids')->nullable();
|
||||
$table->boolean('group_message')->default(false);
|
||||
$table->bigInteger('status_id')->unsigned()->integer();
|
||||
$table->bigInteger('status_id')->unsigned();
|
||||
$table->unique(['to_id', 'from_id', 'status_id']);
|
||||
$table->timestamp('read_at')->nullable();
|
||||
$table->timestamps();
|
||||
|
|
Loading…
Reference in a new issue