fix model

This commit is contained in:
2025-08-13 14:44:49 +03:30
parent 3c49b1f6db
commit aed613fcb4
5 changed files with 8 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('safety_and_privacy', function (Blueprint $table) {
$table->string('recognize_picture_2')->nullable();
$table->string('recognize_picture_second')->nullable();
$table->string('finish_picture')->nullable();
$table->string('evidence_picture')->nullable();
});
@@ -24,7 +24,7 @@ return new class extends Migration
public function down(): void
{
Schema::table('safety_and_privacy', function (Blueprint $table) {
$table->dropColumn(['recognize_picture_2', 'finish_picture', 'evidence_picture']);
$table->dropColumn(['recognize_picture_second', 'finish_picture', 'evidence_picture']);
});
}
};