Files
website/database/migrations/2026_03_24_220010_create_blogs_table.php
2026-03-25 00:02:08 +01:00

34 lines
828 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('blogs', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('published_by');
$table->foreign('published_by')->references('id')->on('users');
$table->string('language');
$table->string('title');
$table->text('body');
$table->boolean('published')->default(false);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('blogs');
}
};