summaryrefslogtreecommitdiff
path: root/sql-files/logs.sql
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-06-05 12:51:51 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-06-05 12:51:51 +0000
commitdfecc9fb264ec429b849baa50859bb6ab0252b0a (patch)
tree892f684728c7b89b455aaaba6a1b8de2099a5572 /sql-files/logs.sql
parent4001777de4bc272bbbef792ea08ab1d93cea2ab2 (diff)
downloadhercules-dfecc9fb264ec429b849baa50859bb6ab0252b0a.tar.gz
hercules-dfecc9fb264ec429b849baa50859bb6ab0252b0a.tar.bz2
hercules-dfecc9fb264ec429b849baa50859bb6ab0252b0a.tar.xz
hercules-dfecc9fb264ec429b849baa50859bb6ab0252b0a.zip
Added 'E' type to picklog table's 'type' column (followup to r11721).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12758 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'sql-files/logs.sql')
-rw-r--r--sql-files/logs.sql5
1 files changed, 3 insertions, 2 deletions
diff --git a/sql-files/logs.sql b/sql-files/logs.sql
index 3f48685f8..9eac8557d 100644
--- a/sql-files/logs.sql
+++ b/sql-files/logs.sql
@@ -1,6 +1,7 @@
#PickLog types (M)onsters Drop, (P)layers Drop/Take, Mobs Drop (L)oot Drop/Take,
# Players (T)rade Give/Take, Players (V)ending Sell/Take, (S)hop Sell/Take, (N)PC Give/Take,
-# (C)onsumable Items, (A)dministrators Create/Delete, Sto(R)age, (G)uild Storage
+# (C)onsumable Items, (A)dministrators Create/Delete, Sto(R)age, (G)uild Storage,
+# (E)mail attachment
#Database: log
#Table: picklog
@@ -8,7 +9,7 @@ CREATE TABLE `picklog` (
`id` int(11) NOT NULL auto_increment,
`time` datetime NOT NULL default '0000-00-00 00:00:00',
`char_id` int(11) NOT NULL default '0',
- `type` enum('M','P','L','T','V','S','N','C','A','R','G') NOT NULL default 'P',
+ `type` enum('M','P','L','T','V','S','N','C','A','R','G',E') NOT NULL default 'P',
`nameid` int(11) NOT NULL default '0',
`amount` int(11) NOT NULL default '1',
`refine` tinyint(3) unsigned NOT NULL default '0',