You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
832 B
35 lines
832 B
/* |
|
Navicat Premium Data Transfer |
|
|
|
Source Server : mac |
|
Source Server Type : MySQL |
|
Source Server Version : 50617 |
|
Source Host : localhost |
|
Source Database : develop |
|
|
|
Target Server Type : MySQL |
|
Target Server Version : 50617 |
|
File Encoding : utf-8 |
|
|
|
Date: 12/02/2015 14:09:32 PM |
|
*/ |
|
|
|
SET NAMES utf8; |
|
SET FOREIGN_KEY_CHECKS = 0; |
|
|
|
-- ---------------------------- |
|
-- Table structure for `tree` |
|
-- ---------------------------- |
|
DROP TABLE IF EXISTS `tree`; |
|
CREATE TABLE `tree` ( |
|
`code` varchar(255) DEFAULT NULL |
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
|
|
|
-- ---------------------------- |
|
-- Records of `tree` |
|
-- ---------------------------- |
|
BEGIN; |
|
INSERT INTO `tree` VALUES ('01'), ('0101'), ('010101'), ('010102'), ('0102'), ('010201'), ('010202'), ('010203'); |
|
COMMIT; |
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|
|
|