text('api_token')->nullable()->after("desc")->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('admins', function (Blueprint $table) { $table->string('api_token',100)->nullable()->after("desc")->change(); }); } };