2017-12-15 03:05:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class MigrateSettingsTableToNewFormat extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function up(): void
|
2017-12-15 03:05:26 +00:00
|
|
|
{
|
|
|
|
DB::table('settings')->truncate();
|
|
|
|
Schema::table('settings', function (Blueprint $table) {
|
|
|
|
$table->increments('id')->first();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function down(): void
|
2017-12-15 03:05:26 +00:00
|
|
|
{
|
|
|
|
Schema::table('settings', function (Blueprint $table) {
|
|
|
|
$table->dropColumn('id');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|