33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?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('news', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('title');
|
|
$table->string('slug')->unique();
|
|
$table->string('category')->default('industry'); // industry|company|event
|
|
$table->string('summary')->nullable();
|
|
$table->text('body')->nullable();
|
|
$table->string('cover')->nullable();
|
|
$table->string('status')->default('published'); // published | draft
|
|
$table->timestamp('published_at')->nullable();
|
|
$table->string('seo_title')->nullable();
|
|
$table->string('seo_description')->nullable();
|
|
$table->timestamps();
|
|
$table->softDeletes();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('news');
|
|
}
|
|
};
|