ok
Direktori : /home2/selectio/www/a1tex.in/database/migrations/ |
Current File : /home2/selectio/www/a1tex.in/database/migrations/2021_06_03_104531_ex_rate_update.php |
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class ExRateUpdate extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('currencies', function (Blueprint $table) { $table->string('exchange_rate')->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('currencies', function (Blueprint $table) { // }); } }