2020-12-14 12:51:45 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
2022-06-21 12:03:51 +02:00
|
|
|
return new class extends Migration {
|
2020-12-14 12:51:45 +01:00
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::table('tasks', function (Blueprint $table) {
|
|
|
|
$table->boolean('is_date_based')->default(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
Schema::table('companies', function (Blueprint $table) {
|
|
|
|
$table->boolean('default_task_is_date_based')->default(false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
2022-06-21 12:02:20 +02:00
|
|
|
};
|