Skip to content

Commit

Permalink
migration fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GuardsmanPanda committed Jun 15, 2022
1 parent 6d599b3 commit f014d14
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Migration/2022_05_31_BearSecurityIncident.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ public function up(): void {
}

public function down(): void {
Schema::dropIfExists('bear_security_incident');
Schema::dropIfExists(table: 'bear_security_incident');
}
};
2 changes: 1 addition & 1 deletion src/Migration/2022_06_07_BearSeverity.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public function down(): void {
Schema::table(table: 'bear_security_incident', callback: static function (Blueprint $table): void {
$table->dropForeign('security_incident_severity_foreign');
});
Schema::dropIfExists('bear_severity');
Schema::dropIfExists(table: 'bear_severity');
}
};
2 changes: 1 addition & 1 deletion src/Migration/2022_06_08_bear_idempotency.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ public function up(): void {
}

public function down(): void {
Schema::dropIfExists('bear_idempotency');
Schema::dropIfExists(table: 'bear_idempotency');
}
};
2 changes: 1 addition & 1 deletion src/Migration/2022_06_12_BearRequestErrorLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public function up(): void {
}

public function down(): void {
Schema::dropIfExists('bear_request_error_log');
Schema::dropIfExists(table: 'bear_request_error_log');
}
};

0 comments on commit f014d14

Please sign in to comment.