diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-26 23:17:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-26 23:17:34 +0300 |
commit | a9020e26ecf3c781847fec5ca02fbddb116fb2f9 (patch) | |
tree | 0cea0142fb1f6a1201aa977a5a79bd67f4fea10c | |
parent | 40f015d43eb87a6680b4ce53b1ca88c0dec641e3 (diff) | |
download | hercules-a9020e26ecf3c781847fec5ca02fbddb116fb2f9.tar.gz hercules-a9020e26ecf3c781847fec5ca02fbddb116fb2f9.tar.bz2 hercules-a9020e26ecf3c781847fec5ca02fbddb116fb2f9.tar.xz hercules-a9020e26ecf3c781847fec5ca02fbddb116fb2f9.zip |
Fix syntax error in sql update file 2018-07-24--03-23.sql
-rw-r--r-- | sql-files/upgrades/2018-07-24--03-23.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-files/upgrades/2018-07-24--03-23.sql b/sql-files/upgrades/2018-07-24--03-23.sql index 64e29996f..a8d2d8f77 100644 --- a/sql-files/upgrades/2018-07-24--03-23.sql +++ b/sql-files/upgrades/2018-07-24--03-23.sql @@ -18,5 +18,5 @@ -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. -UPDATE `inventory` SET `identify` = 1, `attribute` = 1 WHERE `card0` = -256 and `identify` = 0 +UPDATE `inventory` SET `identify` = 1, `attribute` = 1 WHERE `card0` = -256 and `identify` = 0; INSERT INTO `sql_updates` (`timestamp`) VALUES (1532403228); |