mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-27 12:56:07 +02:00
Updated Map Server namespace. Moved all other data folders (www and sql) to data folder. Renamed boot name to Project Meteor.
This commit is contained in:
parent
18ef69f3d1
commit
91549bff7a
1823 changed files with 102704 additions and 901 deletions
26
Data/sql/supportdesk_issues.sql
Normal file
26
Data/sql/supportdesk_issues.sql
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
MySQL Data Transfer
|
||||
Source Host: localhost
|
||||
Source Database: ffxiv_server
|
||||
Target Host: localhost
|
||||
Target Database: ffxiv_server
|
||||
Date: 8/20/2016 7:15:41 PM
|
||||
*/
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
-- ----------------------------
|
||||
-- Table structure for supportdesk_issues
|
||||
-- ----------------------------
|
||||
CREATE TABLE `supportdesk_issues` (
|
||||
`slot` smallint(4) unsigned NOT NULL,
|
||||
`title` varchar(50) NOT NULL,
|
||||
PRIMARY KEY (`slot`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records
|
||||
-- ----------------------------
|
||||
INSERT INTO `supportdesk_issues` VALUES ('0', 'Report Harassment');
|
||||
INSERT INTO `supportdesk_issues` VALUES ('1', 'Report Cheating');
|
||||
INSERT INTO `supportdesk_issues` VALUES ('2', 'Report a Bug or Glitch');
|
||||
INSERT INTO `supportdesk_issues` VALUES ('3', 'Leave Suggestion');
|
Loading…
Add table
Add a link
Reference in a new issue