관리-도구
편집 파일: 2024_08_14_091259_create_notification_templates_table.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( 'notification_templates', function (Blueprint $table) { $table->id(); $table->string('title'); $table->text('description'); $table->string('template_name'); $table->timestamps(); } ); } public function down(): void { Schema::dropIfExists('notification_templates'); } };