add Structure Base · c09d46fc19 - SVN.BY: Go Git Service
Browse Source

add Structure Base

Shumko Aliaksandr 7 years ago
parent
commit
c09d46fc19
1 changed files with 32 additions and 0 deletions
  1. 32 0
      Structure_DataBase.sql

+ 32 - 0
Structure_DataBase.sql

@@ -0,0 +1,32 @@
1
+SET FOREIGN_KEY_CHECKS=0;
2
+
3
+-- ----------------------------
4
+-- Table structure for city_list_ru
5
+-- ----------------------------
6
+CREATE TABLE `city_list_ru` (
7
+  `id` int(11) NOT NULL COMMENT 'Country ID',
8
+  `title` text NOT NULL COMMENT 'Name country (Title)',
9
+  `area` text,
10
+  `country` text,
11
+  `region` text,
12
+  PRIMARY KEY (`id`)
13
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
14
+
15
+-- ----------------------------
16
+-- Table structure for country_list_ru
17
+-- ----------------------------
18
+CREATE TABLE `country_list_ru` (
19
+  `id` int(11) NOT NULL COMMENT 'Country ID',
20
+  `title` text NOT NULL COMMENT 'Name country (Title)',
21
+  PRIMARY KEY (`id`)
22
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
23
+
24
+-- ----------------------------
25
+-- Table structure for region_list_ru
26
+-- ----------------------------
27
+CREATE TABLE `region_list_ru` (
28
+  `id` int(11) NOT NULL COMMENT 'Country ID',
29
+  `title` text NOT NULL COMMENT 'Name country (Title)',
30
+  `country` int(255) NOT NULL,
31
+  PRIMARY KEY (`id`)
32
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;