-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_tables.sql
43 lines (37 loc) · 860 Bytes
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Table structure for table "static_countries"
#
CREATE TABLE static_countries (
cn_short_sk varchar(50) DEFAULT '' NOT NULL
);
#
# Table structure for table "static_country_zones"
#
CREATE TABLE static_country_zones (
zn_name_sk varchar(50) DEFAULT '' NOT NULL
);
#
# Table structure for table "static_currencies"
#
CREATE TABLE static_currencies (
cu_name_sk varchar(50) DEFAULT '' NOT NULL,
cu_sub_name_sk varchar(20) DEFAULT '' NOT NULL
);
#
# Table structure for table "static_languages"
#
CREATE TABLE static_languages (
lg_name_sk varchar(50) DEFAULT '' NOT NULL
);
#
# Table structure for table "static_territories"
#
CREATE TABLE static_territories (
tr_name_sk varchar(50) DEFAULT '' NOT NULL
);
#
# Table structure for table "static_taxes"
#
CREATE TABLE static_taxes (
tx_name_sk varchar(50) DEFAULT '' NOT NULL
);