engelsystem/db/migrations/2021_10_12_000000_add_shift...

42 lines
860 B
PHP
Raw Normal View History

2021-11-27 11:34:20 +01:00
<?php
declare(strict_types=1);
2021-11-27 11:34:20 +01:00
namespace Engelsystem\Migrations;
use Engelsystem\Database\Migration\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddShiftsDescription extends Migration
{
use Reference;
/**
* Run the migration
*/
public function up(): void
2021-11-27 11:34:20 +01:00
{
if (!$this->schema->hasTable('Shifts')) {
return;
}
$this->schema->table('Shifts', function (Blueprint $table): void {
$table->text('description')->nullable()->after('shifttype_id');
});
2021-11-27 11:34:20 +01:00
}
/**
* Reverse the migration
*/
public function down(): void
2021-11-27 11:34:20 +01:00
{
if (!$this->schema->hasTable('Shifts')) {
return;
}
$this->schema->table('Shifts', function (Blueprint $table): void {
$table->dropColumn('description');
});
2021-11-27 11:34:20 +01:00
}
}