· 5 years ago · Jun 02, 2020, 09:26 PM
1-- MySQL dump 10.13 Distrib 5.5.51, for FreeBSD11.0 (amd64)
2--
3-- Host: localhost Database: arianea_player
4-- ------------------------------------------------------
5-- Server version 5.5.51
6
7/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10/*!40101 SET NAMES utf8 */;
11/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12/*!40103 SET TIME_ZONE='+00:00' */;
13/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18--
19-- Table structure for table `acce`
20--
21
22DROP TABLE IF EXISTS `acce`;
23/*!40101 SET @saved_cs_client = @@character_set_client */;
24/*!40101 SET character_set_client = utf8 */;
25CREATE TABLE `acce` (
26 `pid` int(11) NOT NULL,
27 `time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
28 `x` int(1) NOT NULL,
29 `y` int(1) NOT NULL,
30 `item_vnum` int(11) NOT NULL,
31 `item_uid` int(11) NOT NULL,
32 `item_count` smallint(3) NOT NULL,
33 `item_abs_chance` smallint(3) NOT NULL,
34 `success` varbinary(3) NOT NULL
35) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_cs ROW_FORMAT=FIXED;
36/*!40101 SET character_set_client = @saved_cs_client */;
37
38--
39-- Dumping data for table `acce`
40--
41
42LOCK TABLES `acce` WRITE;
43/*!40000 ALTER TABLE `acce` DISABLE KEYS */;
44/*!40000 ALTER TABLE `acce` ENABLE KEYS */;
45UNLOCK TABLES;
46
47--