Merge pull request #70 from witelgroup/feature/WebserviceResive

add nullable for token in harim
This commit is contained in:
Amir Ghasempoor
2025-10-19 10:19:06 +03:30
committed by GitHub

View File

@@ -13,7 +13,7 @@ return new class extends Migration
{ {
Schema::table('harims', function (Blueprint $table) { Schema::table('harims', function (Blueprint $table) {
$table->longText('data')->nullable(); $table->longText('data')->nullable();
$table->string('token', 255); $table->string('token', 255)->nullable();
}); });
} }