34 lines
828 B
PHP
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');
|
|
}
|
|
};
|