From 647f28ab02069d9d9ef68609f22ed6ae579eadfb Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 7 Dec 2022 18:53:12 +1100 Subject: [PATCH] Set nullable properties to matomo properties --- database/migrations/2022_07_12_45766_add_matomo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/2022_07_12_45766_add_matomo.php b/database/migrations/2022_07_12_45766_add_matomo.php index 91fdee80b567..9ac33fdd905d 100644 --- a/database/migrations/2022_07_12_45766_add_matomo.php +++ b/database/migrations/2022_07_12_45766_add_matomo.php @@ -14,8 +14,8 @@ class AddIndexToPaymentHash extends Migration public function up() { Schema::table('companies', function (Blueprint $table) { - $table->varchar('matomo_url'); - $table->bigInteger('matomo_id'); + $table->varchar('matomo_url')->nullable(); + $table->bigInteger('matomo_id')->nullable(); }); } }