From d1bd6d0e3919ccdf22c74ebf29282475288132bd Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Tue, 24 Jan 2023 19:21:23 +0000 Subject: [PATCH] Fixed incorrect field in down migration --- .../2023_01_24_104625_refactor_joint_permissions_storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2023_01_24_104625_refactor_joint_permissions_storage.php b/database/migrations/2023_01_24_104625_refactor_joint_permissions_storage.php index 49ebf5c5a..0f73f456b 100644 --- a/database/migrations/2023_01_24_104625_refactor_joint_permissions_storage.php +++ b/database/migrations/2023_01_24_104625_refactor_joint_permissions_storage.php @@ -46,7 +46,7 @@ class RefactorJointPermissionsStorage extends Migration $table->boolean('has_permission')->index(); $table->boolean('has_permission_own')->index(); - $table->unsignedInteger('created_by')->index(); + $table->unsignedInteger('owned_by')->index(); }); } }