Update seeder and names

This commit is contained in:
DariusIII
2024-10-28 13:27:02 +01:00
parent 5ee03998b3
commit 98c7b043ca
9 changed files with 46 additions and 1073 deletions
@@ -0,0 +1,28 @@
<?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('settings', function (Blueprint $table) {
$table->renameColumn('lookuptvrage', 'lookuptv');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('settings', function (Blueprint $table) {
$table->renameColumn('lookuptv', 'lookuptvrage');
});
}
};
File diff suppressed because it is too large Load Diff