2023-07-02 13:40:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
return new class extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
|
|
|
public function up(): void
|
|
|
|
{
|
|
|
|
Schema::table('setups',function (Blueprint $table) {
|
|
|
|
$table->jsonb('servers')->nullable();
|
2023-07-05 12:42:59 +00:00
|
|
|
$table->dropColumn(['binkp','zmodem','permissions','protocols','options','emsi_protocols']);
|
|
|
|
});
|
|
|
|
|
|
|
|
Schema::table('setups',function (Blueprint $table) {
|
|
|
|
$table->jsonb('options')->nullable();
|
2023-07-02 13:40:08 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down(): void
|
|
|
|
{
|
2023-07-05 12:42:59 +00:00
|
|
|
Schema::table('setups',function (Blueprint $table) {
|
|
|
|
$table->dropColumn(['options']);
|
|
|
|
});
|
2023-07-02 13:40:08 +00:00
|
|
|
Schema::table('setups',function (Blueprint $table) {
|
|
|
|
$table->dropColumn(['servers']);
|
2023-07-05 12:42:59 +00:00
|
|
|
$table->integer('binkp')->nullable();
|
|
|
|
$table->integer('zmodem')->nullable();
|
|
|
|
$table->integer('permissions')->nullable();
|
|
|
|
$table->integer('protocols')->nullable();
|
|
|
|
$table->integer('emsi_protocols')->nullable();
|
|
|
|
$table->integer('options')->nullable();
|
2023-07-02 13:40:08 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|