72dd540b67
Co-authored-by: Cursor <cursoragent@cursor.com>
61 lines
2.5 KiB
SQL
61 lines
2.5 KiB
SQL
-- MySQL dump 10.13 Distrib 8.4.3, for Win64 (x86_64)
|
|
--
|
|
-- Host: localhost Database: acore_characters
|
|
-- ------------------------------------------------------
|
|
-- Server version 8.4.3
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!50503 SET NAMES utf8mb4 */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
--
|
|
-- Table structure for table `item_instance`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `item_instance`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `item_instance` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0',
|
|
`itemEntry` int unsigned DEFAULT '0',
|
|
`owner_guid` int unsigned NOT NULL DEFAULT '0',
|
|
`creatorGuid` int unsigned NOT NULL DEFAULT '0',
|
|
`giftCreatorGuid` int unsigned NOT NULL DEFAULT '0',
|
|
`count` int unsigned NOT NULL DEFAULT '1',
|
|
`duration` int NOT NULL DEFAULT '0',
|
|
`charges` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
|
`flags` int unsigned DEFAULT '0',
|
|
`enchantments` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`randomPropertyId` smallint NOT NULL DEFAULT '0',
|
|
`durability` smallint unsigned NOT NULL DEFAULT '0',
|
|
`playedTime` int unsigned NOT NULL DEFAULT '0',
|
|
`text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
|
PRIMARY KEY (`guid`),
|
|
KEY `idx_owner_guid` (`owner_guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Item System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `item_instance`
|
|
--
|
|
|
|
LOCK TABLES `item_instance` WRITE;
|
|
/*!40000 ALTER TABLE `item_instance` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `item_instance` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
-- Dump completed on 2026-03-15 20:39:51
|