add nullable for token in harim

This commit is contained in:
2025-10-18 11:50:44 +03:30
parent 1bdd9abab3
commit 3d09b5b4d1

View File

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