mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04: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:
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');
|
||||
Reference in New Issue
Block a user