Files
Fitnessblog/database/migrations/2025_12_11_024941_create_posts_table.php
2026-01-07 15:46:00 +01:00

38 lines
990 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.
*/
public function up(): void
{
Schema::create('posts', function (Blueprint $table) {
$table->id();
$table->integer('author_id');
$table->integer('category');
$table->string('title');
$table->string('slug')->unique();
$table->text('content');
$table->text('featured_image');
$table->string('tags')->nullable();
$table->text('meta_keywords')->nullable();
$table->text('meta_description')->nullable();
$table->integer('visibility')->default(1);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('posts');
}
};