You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
if (!$this->schema->hasTable('Shifts')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->schema->table(
|
|
|
|
'Shifts',
|
|
|
|
function (Blueprint $table) {
|
|
|
|
$table->text('description')->nullable()->after('shifttype_id');
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migration
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
if (!$this->schema->hasTable('Shifts')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->schema->table(
|
|
|
|
'Shifts',
|
|
|
|
function (Blueprint $table) {
|
|
|
|
$table->dropColumn('description');
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|