Enable full setup on the setup form
This commit is contained in:
@@ -13,6 +13,11 @@ return new class extends Migration
|
||||
{
|
||||
Schema::table('setups',function (Blueprint $table) {
|
||||
$table->jsonb('servers')->nullable();
|
||||
$table->dropColumn(['binkp','zmodem','permissions','protocols','options','emsi_protocols']);
|
||||
});
|
||||
|
||||
Schema::table('setups',function (Blueprint $table) {
|
||||
$table->jsonb('options')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -21,8 +26,17 @@ return new class extends Migration
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('setups',function (Blueprint $table) {
|
||||
$table->dropColumn(['options']);
|
||||
});
|
||||
Schema::table('setups',function (Blueprint $table) {
|
||||
$table->dropColumn(['servers']);
|
||||
$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();
|
||||
});
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user