mirror of
https://github.com/araxiaonline/mod-azerothshard.git
synced 2026-06-13 01:32:21 -04:00
9 lines
184 B
SQL
9 lines
184 B
SQL
DROP TABLE IF EXISTS `buy_log`;
|
|
CREATE TABLE IF NOT EXISTS `buy_log` (
|
|
`playerGuid` bigint (10),
|
|
`item` int (10),
|
|
`vendor` bigint (10),
|
|
`price` bigint (10),
|
|
`date` timestamp
|
|
);
|