simedkom/database/migrations/2025_03_10_063647_create_announcements_table.php
myuqinurrohman 46261e7412 feat: user announcement
chore: change from media announcement to user announcement
2025-03-20 09:53:06 +07:00

34 lines
848 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('announcements', function (Blueprint $table) {
$table->id();
$table->text('headline');
$table->text('content');
$table->text('link')->nullable();
$table->string('attachment')->nullable();
$table->unsignedBigInteger('enhancer_id');
$table->foreign('enhancer_id')->references('id')->on('users');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('announcements');
}
};