mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
7 lines
220 B
SQL
7 lines
220 B
SQL
CREATE TABLE `discovered_items` (
|
|
`item_id` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`char_name` varchar(64) NOT NULL DEFAULT '',
|
|
`discovered_date` int(11) unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`item_id`)
|
|
);
|