mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-18 11:04:22 +00:00
🎉 feat(seo): add Laravel SEO package and create SEO migration for better site optimization.
This commit is contained in:
31
database/migrations/2024_10_24_170328_create_seo_table.php
Normal file
31
database/migrations/2024_10_24_170328_create_seo_table.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('seo', function (Blueprint $table) {
|
||||
$table->id();
|
||||
|
||||
$table->morphs('model');
|
||||
|
||||
$table->longText('description')->nullable();
|
||||
$table->string('title')->nullable();
|
||||
$table->string('image')->nullable();
|
||||
$table->string('author')->nullable();
|
||||
$table->string('robots')->nullable();
|
||||
$table->string('canonical_url')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('seo');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user