Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrothauer committed Dec 10, 2024
1 parent b83bcc3 commit 19431e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/Migrations/20241209153457_Fundings7.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ public function change(): void
$uploadEntity = 'fundinguploads_' . $uploadType . 's';
$uploadStatusField = $uploadType . '_status';
$sql = "ALTER TABLE `fundings` CHANGE `".$uploadStatusField."` `".$uploadStatusField."` INT NULL DEFAULT '" . Funding::STATUS_UPLOAD_MISSING . "';";
$this->execute($sql);
//$this->execute($sql);
}

$sql = "ALTER TABLE `fundings` DROP `status`;";
$this->execute($sql);
//$this->execute($sql);

}
}

0 comments on commit 19431e5

Please sign in to comment.