id(); $table->string('crdno')->nullable(); $table->string('accflag')->nullable(); $table->string('cracc1')->nullable(); $table->string('cracc2')->nullable(); $table->string('cracc3')->nullable(); $table->string('cracc4')->nullable(); $table->string('cracc5')->nullable(); $table->string('craccnam1')->nullable(); $table->string('craccnam2')->nullable(); $table->string('craccnam3')->nullable(); $table->string('craccnam4')->nullable(); $table->string('craccnam5')->nullable(); $table->string('crsts')->nullable(); $table->string('cttype')->nullable(); $table->string('ctdesc')->nullable(); $table->string('crdate')->nullable(); $table->string('branch')->nullable(); $table->string('currency')->nullable(); $table->decimal('fee', 10, 2)->nullable(); $table->timestamp('last_update')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('atmcards'); } };