id(); $table->unsignedBigInteger('tenant_id')->comment('멀티테넌시'); $table->string('file_path', 255)->comment('저장경로'); $table->string('file_name', 255); $table->integer('file_size')->nullable(); $table->string('mime_type', 50)->nullable(); $table->string('description', 255)->nullable(); $table->timestamps(); $table->softDeletes(); }); } public function down() { Schema::dropIfExists('files'); } };