-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from damian-pastorini/develop
- Reldens - Items System
- Loading branch information
Showing
2 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
-- -------------------------------------------------------- | ||
-- Host: 127.0.0.1 | ||
-- Server version: 5.7.26 - MySQL Community Server (GPL) | ||
-- Server OS: Win64 | ||
-- HeidiSQL Version: 9.5.0.5196 | ||
-- -------------------------------------------------------- | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!50503 SET NAMES utf8mb4 */; | ||
/*!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' */; | ||
|
||
-- Dumping structure for table reldens.items_group | ||
CREATE TABLE IF NOT EXISTS `items_group` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`key` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | ||
`label` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | ||
`description` text COLLATE utf8_unicode_ci, | ||
`sort` int(11) DEFAULT NULL, | ||
`items_limit` int(1) NOT NULL DEFAULT '0', | ||
`limit_per_item` int(1) NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='The group table is to save the groups settings.'; | ||
|
||
|
||
-- Dumping structure for table reldens.items_inventory | ||
CREATE TABLE IF NOT EXISTS `items_inventory` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`owner_id` int(11) NOT NULL, | ||
`item_id` int(11) NOT NULL, | ||
`qty` int(11) NOT NULL DEFAULT '0', | ||
`remaining_uses` int(11) DEFAULT NULL, | ||
`is_active` int(1) DEFAULT NULL COMMENT 'For example equipped or not equipped items.', | ||
PRIMARY KEY (`id`), | ||
KEY `FK_items_inventory_items_item` (`item_id`), | ||
CONSTRAINT `FK_items_inventory_items_item` FOREIGN KEY (`item_id`) REFERENCES `items_item` (`id`) ON UPDATE CASCADE | ||
) ENGINE=InnoDB AUTO_INCREMENT=95 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Inventory table is to save the items for each owner.'; | ||
|
||
-- Dumping structure for table reldens.items_item | ||
CREATE TABLE IF NOT EXISTS `items_item` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`key` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | ||
`group_id` int(11) DEFAULT NULL, | ||
`label` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | ||
`description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, | ||
`qty_limit` int(11) NOT NULL DEFAULT '0' COMMENT 'Default 0 to unlimited qty.', | ||
`uses_limit` int(11) NOT NULL DEFAULT '1' COMMENT 'Default 1 use per item (0 = unlimited).', | ||
`useTimeOut` int(11) DEFAULT NULL, | ||
`execTimeOut` int(11) DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `id` (`id`), | ||
UNIQUE KEY `key` (`key`), | ||
KEY `group_id` (`group_id`), | ||
CONSTRAINT `FK_items_item_items_group` FOREIGN KEY (`group_id`) REFERENCES `items_group` (`id`) ON UPDATE CASCADE | ||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='List of all available items in the system.'; | ||
|
||
-- Dumping structure for table reldens.items_item_modifiers | ||
CREATE TABLE IF NOT EXISTS `items_item_modifiers` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`item_id` int(11) NOT NULL, | ||
`property_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | ||
`operation` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | ||
`value` varchar(255) COLLATE utf8_unicode_ci NOT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `item_id` (`item_id`), | ||
CONSTRAINT `FK_items_item_modifiers_items_item` FOREIGN KEY (`item_id`) REFERENCES `items_item` (`id`) ON UPDATE CASCADE | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Modifiers is the way we will affect the item owner.'; | ||
|
||
-- Dumping data for table reldens.items_item_modifiers: ~0 rows (approximately) | ||
/*!40000 ALTER TABLE `items_item_modifiers` DISABLE KEYS */; | ||
/*!40000 ALTER TABLE `items_item_modifiers` ENABLE KEYS */; | ||
|
||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; | ||
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters