Merge pull request #8050 from turbo124/v5-develop

Set nullable properties to matomo properties
This commit is contained in:
David Bomba 2022-12-07 18:53:38 +11:00 committed by GitHub
commit 91830dcd9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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