1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/database/migrations/2022_11_06_215526_drop_html_backups_column_from_backups_table.php
2023-02-16 12:36:09 +11:00

39 lines
867 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if (Schema::hasColumn('backups', 'html_backup')) {
Schema::table('backups', function (Blueprint $table) {
$table->dropColumn('html_backup');
});
}
Schema::table('backups', function (Blueprint $table) {
$table->string('disk')->nullable();
});
Schema::table('bank_integrations', function (Blueprint $table) {
$table->boolean('auto_sync')->default(false);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
};