show_worldwide added

This commit is contained in:
Benjamin Takats
2022-12-15 15:46:07 +01:00
parent bf6c281342
commit 2b28685b9a
4 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
* @return void
*/
public function up()
{
Schema::table('bitcoin_events', function (Blueprint $table) {
$table->boolean('show_worldwide')
->default(false);
});
}
/**
* Reverse the migrations.
* @return void
*/
public function down()
{
Schema::table('bitcoin_events', function (Blueprint $table) {
//
});
}
};