This commit is contained in:
Andras Bacsai
2023-07-14 12:09:56 +02:00
parent a96fb46296
commit 9f4342bd19
16 changed files with 100 additions and 49 deletions

View File

@@ -13,7 +13,7 @@ return new class extends Migration
{
Schema::table('instance_settings', function (Blueprint $table) {
$table->boolean('is_resale_license_active')->default(false);
$table->string('resale_license')->nullable();
$table->longText('resale_license')->nullable();
});
}