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 4e2d11a..93c7838 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,7 +32,6 @@ 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(); });