Update theme

This commit is contained in:
DariusIII
2025-10-21 16:41:14 +02:00
parent 562c3a4b77
commit a3359c357f
111 changed files with 7124 additions and 5042 deletions
@@ -0,0 +1,25 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
// Convert the content table to utf8mb4 to support emojis
DB::statement('ALTER TABLE content CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Revert back to utf8
DB::statement('ALTER TABLE content CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci');
}
};