id(); $table->string('symbol')->unique(); $table->string('full_name')->nullable(); $table->timestamps(); $table->index('symbol'); }); } public function down(): void { Schema::dropIfExists('assets'); } };