mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-22 20:57:46 +00:00
55 lines
2.1 KiB
MySQL
55 lines
2.1 KiB
MySQL
![]() |
-- MySQL dump 10.13 Distrib 5.7.13, for Win64 (x86_64)
|
||
|
--
|
||
|
-- Host: localhost Database: sapphire
|
||
|
-- ------------------------------------------------------
|
||
|
-- Server version 5.7.13-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 `dbaccounts`
|
||
|
--
|
||
|
|
||
|
DROP TABLE IF EXISTS `accounts`;
|
||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
CREATE TABLE `accounts` (
|
||
|
`account_id` int(11) NOT NULL DEFAULT '0',
|
||
|
`account_name` varchar(255) COLLATE latin1_general_ci NOT NULL,
|
||
|
`account_pass` varchar(255) COLLATE latin1_general_ci NOT NULL,
|
||
|
`account_created` int(11) NOT NULL DEFAULT '0',
|
||
|
`account_status` tinyint(4) NOT NULL DEFAULT '0',
|
||
|
PRIMARY KEY (`account_id`)
|
||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
||
|
--
|
||
|
-- Dumping data for table `dbaccounts`
|
||
|
--
|
||
|
|
||
|
LOCK TABLES `accounts` WRITE;
|
||
|
/*!40000 ALTER TABLE `accounts` DISABLE KEYS */;
|
||
|
INSERT INTO `accounts` VALUES (1,'test','CY9rzUYh03PK3k6DJie09g==',0,2);
|
||
|
/*!40000 ALTER TABLE `accounts` ENABLE KEYS */;
|
||
|
UNLOCK TABLES;
|
||
|
/*!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 2016-12-09 17:37:06
|