Skip to content

Commit

Permalink
no capitals in enum
Browse files Browse the repository at this point in the history
  • Loading branch information
hinanaya committed Jun 4, 2024
1 parent 45393ac commit 466a5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion updates/20240604.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function items()

public function run()
{
$this->db->query("ALTER TABLE alerts ADD COLUMN mode ENUM('Interrupt', 'Voicetrack') NOT NULL AFTER frequency;");
$this->db->query("ALTER TABLE alerts ADD COLUMN mode ENUM('interrupt', 'voicetrack') NOT NULL AFTER frequency;");
if ($this->db->error()) {
echo "Failed to add mode field.";
return false;
Expand Down

0 comments on commit 466a5c5

Please sign in to comment.