Merge pull request #70 from witelgroup/feature/WebserviceResive
add nullable for token in harim
This commit is contained in:
@@ -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();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user