mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* STOP... Rebase time! * WIP appveyor * appveyor WIP 2 * appveyor WIP 3 * appveyor WIP 4 * appveyor WIP 5 * appveyor WIP 6 * appveyor WIP 7 * appveyor WIP 8 * Fixes for Appveyor * Cleaning up StyleCop warning * More AppVeyor fun * Another Appveyor test * Updated GuidManager * Deleted previous generator test data due to issues with appveyor? * Stylecop error * Changed GuidType to fix IsCreature. why is this a thing?
88 lines
3.1 KiB
SQL
88 lines
3.1 KiB
SQL
CREATE DATABASE IF NOT EXISTS `ace_auth` /*!40100 DEFAULT CHARACTER SET utf8 */;
|
|
USE `ace_auth`;
|
|
-- MySQL dump 10.13 Distrib 5.7.12, for Win64 (x86_64)
|
|
--
|
|
-- Host: localhost Database: ace_auth
|
|
-- ------------------------------------------------------
|
|
-- Server version 5.7.17-log
|
|
|
|
/*!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 */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!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 `accesslevel`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `accesslevel`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `accesslevel` (
|
|
`level` int(10) unsigned NOT NULL DEFAULT '0',
|
|
`name` varchar(45) NOT NULL,
|
|
`prefix` varchar(45) DEFAULT '',
|
|
PRIMARY KEY (`level`),
|
|
UNIQUE KEY `level` (`level`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `accesslevel`
|
|
--
|
|
|
|
LOCK TABLES `accesslevel` WRITE;
|
|
/*!40000 ALTER TABLE `accesslevel` DISABLE KEYS */;
|
|
INSERT INTO `accesslevel` VALUES (0,'Player',''),(1,'Advocate',''),(2,'Sentinel','Sentinel'),(3,'Envoy','Envoy'),(4,'Developer',''),(5,'Admin','Admin');
|
|
/*!40000 ALTER TABLE `accesslevel` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `account`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `account`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `account` (
|
|
`id` int(10) unsigned NOT NULL DEFAULT '0',
|
|
`account` varchar(32) NOT NULL DEFAULT '',
|
|
`accesslevel` int(10) unsigned NOT NULL DEFAULT '0',
|
|
`password` varchar(64) NOT NULL DEFAULT '',
|
|
`salt` varchar(64) NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`account`),
|
|
UNIQUE KEY `id` (`id`),
|
|
KEY `accesslevel_idx` (`accesslevel`),
|
|
CONSTRAINT `accesslevel` FOREIGN KEY (`accesslevel`) REFERENCES `accesslevel` (`level`) ON DELETE NO ACTION ON UPDATE NO ACTION
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `account`
|
|
--
|
|
|
|
LOCK TABLES `account` WRITE;
|
|
/*!40000 ALTER TABLE `account` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `account` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Dumping events for database 'ace_auth'
|
|
--
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!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 2017-07-08 12:04:00
|