Drop tables that may exist in down methods

This commit is contained in:
Marcus Moore 2023-01-23 15:42:45 -08:00
parent 760844de6f
commit cd582be851
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -46,5 +46,6 @@ class MigrationCartalystSentryInstallGroups extends Migration
{ {
// See 2014_11_04_231416_update_group_field_for_reporting.php and 2019_06_12_184327_rename_groups_table.php // See 2014_11_04_231416_update_group_field_for_reporting.php and 2019_06_12_184327_rename_groups_table.php
Schema::dropIfExists('permission_groups'); Schema::dropIfExists('permission_groups');
Schema::dropIfExists('groups');
} }
} }

View file

@ -31,6 +31,6 @@ class CreateLicenseSeatsTable extends Migration
*/ */
public function down() public function down()
{ {
// Schema::dropIfExists('license_seats');
} }
} }