mirror of
https://github.com/freekode/mod-reward-played-time-improved.git
synced 2026-01-13 16:39:07 +00:00
25 lines
1.0 KiB
SQL
25 lines
1.0 KiB
SQL
-- --------------------------------------------------------
|
|
-- Host: 127.0.0.1
|
|
-- Server version: 5.6.36-log - MySQL Community Server (GPL)
|
|
-- Server OS: Win64
|
|
-- HeidiSQL Version: 9.4.0.5125
|
|
-- --------------------------------------------------------
|
|
|
|
/*!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 characters.reward_system
|
|
CREATE TABLE IF NOT EXISTS `reward_system` (
|
|
`roll` int(11) NOT NULL,
|
|
`item` int(11) NOT NULL,
|
|
`quantity` int(11)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
-- Data exporting was unselected.
|
|
/*!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 */;
|