Skip to content

Commit

Permalink
removed unneeded type keywords - fix for mysql schema update
Browse files Browse the repository at this point in the history
  • Loading branch information
chilek committed Feb 18, 2016
1 parent 4b177a3 commit 97bb564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/upgradedb/mysql.2016012800.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

$this->BeginTrans();

$this->Execute("ALTER TABLE invoicecontents CHANGE value value TYPE decimal(12, 5) NOT NULL DEFAULT '0'");
$this->Execute("ALTER TABLE invoicecontents CHANGE value value decimal(12, 5) NOT NULL DEFAULT '0'");

$this->Execute("UPDATE dbinfo SET keyvalue = ? WHERE keytype = ?", array('2016012800', 'dbversion'));

Expand Down

0 comments on commit 97bb564

Please sign in to comment.