id()->comment('PK'); $table->string('name')->comment('플랜명'); $table->string('code', 30)->unique()->comment('플랜 코드'); $table->text('description')->nullable()->comment('설명'); $table->decimal('price', 12, 2)->comment('월 요금'); $table->string('billing_cycle', 20)->default('monthly')->comment('청구 주기'); $table->json('features')->nullable()->comment('제공 기능/제한사항'); $table->boolean('is_active')->default(true)->comment('사용여부'); $table->timestamps(); $table->softDeletes(); }); } public function down(): void { Schema::dropIfExists('plans'); } };