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

22 lines
474 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;
2022-12-07 08:54:53 +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) {
2022-12-07 08:54:53 +01:00
$table->string('matomo_url',191)->nullable();
$table->bigInteger('matomo_id')->nullable();
2022-12-07 08:39:05 +01:00
});
2022-12-07 08:39:05 +01:00
}
2022-12-07 08:54:53 +01:00
};