From 8d36d7bfeb381d9a00ebc367e5b336ef98823645 Mon Sep 17 00:00:00 2001 From: younghyeong ryu Date: Wed, 28 Aug 2024 17:28:33 +0900 Subject: [PATCH] t --- .../2024_07_29_000001_create_all__pondol_bbs_tables.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/migrations/2024_07_29_000001_create_all__pondol_bbs_tables.php b/src/migrations/2024_07_29_000001_create_all__pondol_bbs_tables.php index 93c7838..4e2d11a 100644 --- a/src/migrations/2024_07_29_000001_create_all__pondol_bbs_tables.php +++ b/src/migrations/2024_07_29_000001_create_all__pondol_bbs_tables.php @@ -32,6 +32,7 @@ public function up() $table->text('content'); $table->string('image', '255')->nullable(); $table->integer('hit')->unsigned()->default(0); + $table->string('keywords', '100')->nullable()->comment('키워드'); $table->timestamps(); $table->softDeletes(); });