diff options
author | Asheraf <Asheraf@users.noreply.github.com> | 2018-07-26 21:39:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 21:39:33 +0100 |
commit | 164e79976b926da35612ce28cf84ebd9c2ac3d3e (patch) | |
tree | 0cea0142fb1f6a1201aa977a5a79bd67f4fea10c /sql-files | |
parent | 40f015d43eb87a6680b4ce53b1ca88c0dec641e3 (diff) | |
parent | a9020e26ecf3c781847fec5ca02fbddb116fb2f9 (diff) | |
download | hercules-164e79976b926da35612ce28cf84ebd9c2ac3d3e.tar.gz hercules-164e79976b926da35612ce28cf84ebd9c2ac3d3e.tar.bz2 hercules-164e79976b926da35612ce28cf84ebd9c2ac3d3e.tar.xz hercules-164e79976b926da35612ce28cf84ebd9c2ac3d3e.zip |
Merge pull request #2153 from 4144/sqlfix
Fix syntax error in sql update file 2018-07-24--03-23.sql
Diffstat (limited to 'sql-files')
-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); |