1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/database/migrations/2022_07_12_45766_add_matomo.php

21 lines
475 B
PHP
Raw Normal View History

2022-12-07 08:39:05 +01:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
2023-02-16 02:36:09 +01:00
return new class extends Migration {
2022-12-07 08:39:05 +01:00
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('companies', function (Blueprint $table) {
2023-02-16 02:36:09 +01:00
$table->string('matomo_url', 191)->nullable();
$table->bigInteger('matomo_id')->nullable();
2022-12-07 08:39:05 +01:00
});
}
2023-02-16 02:36:09 +01:00
};