This commit is contained in:
sayliraut
2024-07-24 14:54:29 +05:30
parent b0e083df6d
commit 2ec9ea5b92
2 changed files with 3 additions and 2 deletions

View File

@@ -13,8 +13,8 @@ return new class extends Migration
{
Schema::create('manage_rules', function (Blueprint $table) {
$table->id();
$table->longtext('title')->nullable();
$table->longtext('message')->nullable();
$table->longtext('whats_inside')->nullable();
$table->longtext('rules')->nullable();
$table->timestamps();
});
}

View File

@@ -15,6 +15,7 @@ return new class extends Migration
$table->id();
$table->longtext('how_it_works')->nullable();
$table->longtext('rules')->nullable();
$table->longtext('what_is_referral')->nullable();
$table->timestamps();
});
}