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(); }); } }