id(); $table->string('account_number')->unique(); $table->string('customer_code')->nullable(); $table->string('currency')->nullable(); $table->string('opening_date')->nullable(); $table->string('branch_code')->nullable(); $table->string('product_category')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('accounts'); } };