id(); $table->bigInteger('country_id')->unsigned()->nullable(); $table->foreign('country_id')->references('id')->on('countries')->onDelete('cascade'); $table->string('name')->nullable(); $table->string('short_code')->nullable(); $table->string('symbol')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('currencies'); } }