fix model
This commit is contained in:
@@ -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']);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user