Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- MySQL Data Transfer
- Source Host: localhost
- Source Database: l2jnew
- Target Host: localhost
- Target Database: l2jnew
- Date: 7/26/2017 1:40:55 PM
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for faction
- -- ----------------------------
- DROP TABLE IF EXISTS `faction`;
- CREATE TABLE `faction` (
- `factionId` int(5) DEFAULT NULL,
- `factionName` text,
- `factionPos` text,
- `factionColor` text
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records
- -- ----------------------------
- INSERT INTO `faction` VALUES ('1', 'Angels', '555;555;5555', '0FF00');
- INSERT INTO `faction` VALUES ('2', 'Demons', '5125;51251;512', 'FF0000');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement