mirror of
https://github.com/e107inc/e107.git
synced 2025-08-06 14:46:56 +02:00
new module creation
This commit is contained in:
300
e107_admin/sql/core_pg.php
Normal file
300
e107_admin/sql/core_pg.php
Normal file
@@ -0,0 +1,300 @@
|
||||
<?php
|
||||
/*
|
||||
+ ----------------------------------------------------------------------------+
|
||||
| e107 website system
|
||||
|
|
||||
| <20>Steve Dunstan 2001-2002
|
||||
| http://e107.org
|
||||
| jalist@e107.org
|
||||
|
|
||||
| Released under the terms and conditions of the
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_admin/sql/core_pg.php,v $
|
||||
| $Revision: 1.1.1.1 $
|
||||
| $Date: 2006-12-02 04:33:33 $
|
||||
| $Author: mcfly_e107 $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
header("location:../index.php");
|
||||
exit;
|
||||
?>
|
||||
|
||||
CREATE SEQUENCE banner_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE chatbox_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE comments_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE content_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE download_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE download_category_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE forum_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE forum_t_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE headlines_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE links_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE menus_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE news_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE news_category_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE plugin_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE poll_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
CREATE SEQUENCE rate_seq start 1 increment 1 maxvalue 2147483647 minvalue 1 cache 1;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE TABLE banlist (
|
||||
banlist_ip varchar(100) NOT NULL,
|
||||
banlist_admin int4 DEFAULT '0' NOT NULL,
|
||||
banlist_reason text NOT NULL,
|
||||
CONSTRAINT banlist_pkey PRIMARY KEY (banlist_ip)
|
||||
);
|
||||
|
||||
CREATE TABLE banner (
|
||||
banner_id int4 NOT NULL,
|
||||
banner_clientname varchar(100) DEFAULT '' NOT NULL,
|
||||
banner_clientlogin varchar(20) DEFAULT '' NOT NULL,
|
||||
banner_clientpassword varchar(50) DEFAULT '' NOT NULL,
|
||||
banner_image varchar(150) DEFAULT '' NOT NULL,
|
||||
banner_clickurl varchar(150) DEFAULT '' NOT NULL,
|
||||
banner_impurchased int4 DEFAULT '0' NOT NULL,
|
||||
banner_startdate int4 DEFAULT '0' NOT NULL,
|
||||
banner_enddate int4 DEFAULT '0' NOT NULL,
|
||||
banner_active int2 DEFAULT '0' NOT NULL,
|
||||
banner_clicks int4 DEFAULT '0' NOT NULL,
|
||||
banner_impressions int4 DEFAULT '0' NOT NULL,
|
||||
banner_ip text NOT NULL,
|
||||
banner_campaign varchar(150) DEFAULT '' NOT NULL,
|
||||
CONSTRAINT banner_pkey PRIMARY KEY (banner_id)
|
||||
);
|
||||
|
||||
CREATE TABLE chatbox (
|
||||
cb_id int4 NOT NULL,
|
||||
cb_nick varchar(30) DEFAULT '' NOT NULL,
|
||||
cb_message text NOT NULL,
|
||||
cb_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
cb_blocked int2 DEFAULT '0' NOT NULL,
|
||||
cb_ip varchar(15) DEFAULT '' NOT NULL,
|
||||
CONSTRAINT chatbox_pkey PRIMARY KEY (cb_id)
|
||||
);
|
||||
|
||||
CREATE TABLE comments (
|
||||
comment_id int4 DEFAULT '0' NOT NULL,
|
||||
comment_pid int4 DEFAULT '0' NOT NULL,
|
||||
comment_item_id int4 DEFAULT '0' NOT NULL,
|
||||
comment_subject varchar(100) DEFAULT '' NOT NULL,
|
||||
comment_author varchar(100) DEFAULT '' NOT NULL,
|
||||
comment_author_email varchar(200) DEFAULT '' NOT NULL,
|
||||
comment_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
comment_comment text NOT NULL,
|
||||
comment_blocked int2 DEFAULT '0' NOT NULL,
|
||||
comment_ip varchar(20) DEFAULT '' NOT NULL,
|
||||
comment_type varchar(10) DEFAULT '' NOT NULL,
|
||||
CONSTRAINT comments_pkey PRIMARY KEY (comment_id)
|
||||
);
|
||||
|
||||
CREATE TABLE content (
|
||||
content_id int4 DEFAULT '0' NOT NULL,
|
||||
content_heading text NOT NULL,
|
||||
content_subheading text NOT NULL,
|
||||
content_content text NOT NULL,
|
||||
content_parent int4 DEFAULT '0' NOT NULL,
|
||||
content_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
content_author varchar(200) DEFAULT '' NOT NULL,
|
||||
content_comment int2 DEFAULT '0' NOT NULL,
|
||||
content_summary text NOT NULL,
|
||||
content_type int2 DEFAULT '0' NOT NULL,
|
||||
content_review_score int2 DEFAULT '0' NOT NULL,
|
||||
content_pe_icon int2 DEFAULT '0' NOT NULL,
|
||||
content_class int2 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT content_pkey PRIMARY KEY (content_id)
|
||||
);
|
||||
|
||||
CREATE TABLE core (
|
||||
e107_name varchar(20) DEFAULT '' NOT NULL,
|
||||
e107_value text NOT NULL,
|
||||
CONSTRAINT core_pkey PRIMARY KEY (e107_name)
|
||||
);
|
||||
|
||||
CREATE TABLE download (
|
||||
download_id int4 DEFAULT '0' NOT NULL,
|
||||
download_name varchar(100) DEFAULT '' UNIQUE NOT NULL,
|
||||
download_url varchar(150) DEFAULT '' NOT NULL,
|
||||
download_author varchar(100) DEFAULT '' NOT NULL,
|
||||
download_author_email varchar(200) DEFAULT '' NOT NULL,
|
||||
download_author_website varchar(200) DEFAULT '' NOT NULL,
|
||||
download_description text NOT NULL,
|
||||
download_filesize varchar(20) DEFAULT '' NOT NULL,
|
||||
download_requested int4 DEFAULT '0' NOT NULL,
|
||||
download_category int4 DEFAULT '0' NOT NULL,
|
||||
download_active int2 DEFAULT '0' NOT NULL,
|
||||
download_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
download_thumb varchar(150) DEFAULT '' NOT NULL,
|
||||
download_image varchar(150) DEFAULT '' NOT NULL,
|
||||
download_comment int2 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT download_pkey PRIMARY KEY (download_id)
|
||||
);
|
||||
|
||||
CREATE TABLE download_category (
|
||||
download_category_id int4 DEFAULT '0' NOT NULL,
|
||||
download_category_name varchar(100) DEFAULT '' NOT NULL,
|
||||
download_category_description text NOT NULL,
|
||||
download_category_icon varchar(100) DEFAULT '' NOT NULL,
|
||||
download_category_parent int4 DEFAULT '0' NOT NULL,
|
||||
download_category_class varchar(100) DEFAULT '' NOT NULL,
|
||||
CONSTRAINT download_category_pkey PRIMARY KEY (download_category_id)
|
||||
);
|
||||
|
||||
CREATE TABLE flood (
|
||||
flood_url text NOT NULL,
|
||||
flood_time int4 DEFAULT '0' NOT NULL,
|
||||
);
|
||||
|
||||
CREATE TABLE forum (
|
||||
forum_id int4 DEFAULT '0' NOT NULL,
|
||||
forum_name varchar(250) DEFAULT '' NOT NULL,
|
||||
forum_description text NOT NULL,
|
||||
forum_parent int4 DEFAULT '0' NOT NULL,
|
||||
forum_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
forum_moderators text NOT NULL,
|
||||
forum_threads int4 DEFAULT '0' NOT NULL,
|
||||
forum_replies int4 DEFAULT '0' NOT NULL,
|
||||
forum_lastpost varchar(200) DEFAULT '' NOT NULL,
|
||||
forum_class varchar(100) DEFAULT '' NOT NULL,
|
||||
forum_order int4 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT forum_pkey PRIMARY KEY (forum_id)
|
||||
);
|
||||
|
||||
CREATE TABLE forum_t (
|
||||
thread_id int4 DEFAULT '0' NOT NULL,
|
||||
thread_name varchar(250) DEFAULT '' NOT NULL,
|
||||
thread_thread text NOT NULL,
|
||||
thread_forum_id int4 DEFAULT '0' NOT NULL,
|
||||
thread_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
thread_parent int4 DEFAULT '0' NOT NULL,
|
||||
thread_user varchar(250) DEFAULT '' NOT NULL,
|
||||
thread_views int4 DEFAULT '0' NOT NULL,
|
||||
thread_active int2 DEFAULT '0' NOT NULL,
|
||||
thread_lastpost int4 DEFAULT '0' NOT NULL,
|
||||
thread_s int2 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT forum_t_pkey PRIMARY KEY (thread_id)
|
||||
);
|
||||
|
||||
CREATE TABLE headlines (
|
||||
headline_id int4 DEFAULT '0' NOT NULL,
|
||||
headline_url varchar(150) DEFAULT '' NOT NULL,
|
||||
headline_data text NOT NULL,
|
||||
headline_timestamp int4 DEFAULT '0' NOT NULL,
|
||||
headline_description text NOT NULL,
|
||||
headline_image varchar(100) DEFAULT '' NOT NULL,
|
||||
headline_active int2 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT headlines_pkey PRIMARY KEY (headline_id)
|
||||
);
|
||||
|
||||
CREATE TABLE links (
|
||||
link_id int4 DEFAULT '0' NOT NULL,
|
||||
link_name varchar(100) DEFAULT '' NOT NULL,
|
||||
link_url varchar(200) DEFAULT '' NOT NULL,
|
||||
link_description text NOT NULL,
|
||||
link_button varchar(100) DEFAULT '' NOT NULL,
|
||||
link_category int2 DEFAULT '0' NOT NULL,
|
||||
link_order int4 DEFAULT '0' NOT NULL,
|
||||
link_refer int4 DEFAULT '0' NOT NULL,
|
||||
link_open int2 DEFAULT '0' NOT NULL,
|
||||
link_class int2 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT links_pkey PRIMARY KEY (link_id)
|
||||
);
|
||||
|
||||
CREATE TABLE menus (
|
||||
menu_id int4 DEFAULT '0' NOT NULL,
|
||||
menu_name varchar(100) DEFAULT '' NOT NULL,
|
||||
menu_location int2 DEFAULT '0' NOT NULL,
|
||||
menu_order int2 DEFAULT '0' NOT NULL,
|
||||
menu_class int2 DEFAULT '0' NOT NULL,
|
||||
menu_pages text NOT NULL,
|
||||
CONSTRAINT menus_pkey PRIMARY KEY (menu_id)
|
||||
);
|
||||
|
||||
CREATE TABLE news (
|
||||
news_id int4 DEFAULT '0' NOT NULL,
|
||||
news_title varchar(200) DEFAULT '' NOT NULL,
|
||||
news_body text NOT NULL,
|
||||
news_extended text NOT NULL,
|
||||
news_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
news_author int4 DEFAULT '0' NOT NULL,
|
||||
news_category int2 DEFAULT '0' NOT NULL,
|
||||
news_allow_comments int2 DEFAULT '0' NOT NULL,
|
||||
news_start int4 DEFAULT '0' NOT NULL,
|
||||
news_end int4 DEFAULT '0' NOT NULL,
|
||||
news_class int2 DEFAULT '0' NOT NULL,
|
||||
news_render_type int2 DEFAULT '0' NOT NULL,
|
||||
news_comment_total int4 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT news_pkey PRIMARY KEY (news_id)
|
||||
);
|
||||
|
||||
CREATE TABLE news_category (
|
||||
category_id int4 DEFAULT '0' NOT NULL,
|
||||
category_name varchar(200) DEFAULT '' NOT NULL,
|
||||
category_icon varchar(250) DEFAULT '' NOT NULL,
|
||||
CONSTRAINT news_category_pkey PRIMARY KEY (category_id)
|
||||
);
|
||||
|
||||
CREATE TABLE online (
|
||||
online_timestamp int4 DEFAULT '0' NOT NULL,
|
||||
online_flag int2 DEFAULT '0' NOT NULL,
|
||||
online_user_id varchar(100) DEFAULT '' NOT NULL,
|
||||
online_ip varchar(15) DEFAULT '' NOT NULL,
|
||||
online_location varchar(100) DEFAULT '' NOT NULL,
|
||||
online_pagecount tinyint(3) int2 DEFAULT '0' NOT NULL,
|
||||
online_active int4 DEFAULT '0' NOT NULL,
|
||||
|
||||
);
|
||||
|
||||
CREATE TABLE plugin (
|
||||
plugin_id int4 DEFAULT '0' NOT NULL,
|
||||
plugin_name varchar(100) DEFAULT '' NOT NULL,
|
||||
plugin_version varchar(10) DEFAULT '' NOT NULL,
|
||||
plugin_path varchar(100) DEFAULT '' NOT NULL,
|
||||
plugin_installflag int2 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT plugin_pkey PRIMARY KEY (plugin_id)
|
||||
);
|
||||
|
||||
CREATE TABLE poll (
|
||||
poll_id int4 DEFAULT '0' NOT NULL,
|
||||
poll_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
poll_end_datestamp int4 DEFAULT '0' NOT NULL,
|
||||
poll_admin_id int4 DEFAULT '0' NOT NULL,
|
||||
poll_title varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_1 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_2 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_3 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_4 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_5 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_6 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_7 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_8 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_9 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_option_10 varchar(250) DEFAULT '' NOT NULL,
|
||||
poll_votes_1 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_2 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_3 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_4 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_5 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_6 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_7 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_8 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_9 int4 DEFAULT '0' NOT NULL,
|
||||
poll_votes_10 int4 DEFAULT '0' NOT NULL,
|
||||
poll_ip text NOT NULL,
|
||||
poll_active int2 DEFAULT '0' NOT NULL,
|
||||
poll_comment int2 DEFAULT '1' NOT NULL,
|
||||
CONSTRAINT poll_pkey PRIMARY KEY (poll_id)
|
||||
);
|
||||
|
||||
CREATE TABLE rate (
|
||||
rate_id int4 DEFAULT '0' NOT NULL,
|
||||
rate_table varchar(100) DEFAULT '' NOT NULL,
|
||||
rate_itemid int4 DEFAULT '0' NOT NULL,
|
||||
rate_rating int4 DEFAULT '0' NOT NULL,
|
||||
rate_votes int4 DEFAULT '0' NOT NULL,
|
||||
rate_voters text NOT NULL,
|
||||
CONSTRAINT rate_pkey PRIMARY KEY (rate_id)
|
||||
);
|
569
e107_admin/sql/core_sql.php
Normal file
569
e107_admin/sql/core_sql.php
Normal file
@@ -0,0 +1,569 @@
|
||||
<?php
|
||||
/*
|
||||
+ ----------------------------------------------------------------------------+
|
||||
| e107 website system
|
||||
|
|
||||
| <20>Steve Dunstan 2001-2002
|
||||
| http://e107.org
|
||||
| jalist@e107.org
|
||||
|
|
||||
| Released under the terms and conditions of the
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_admin/sql/core_sql.php,v $
|
||||
| $Revision: 1.1.1.1 $
|
||||
| $Date: 2006-12-02 04:33:33 $
|
||||
| $Author: mcfly_e107 $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
header("location:../index.php");
|
||||
exit;
|
||||
?>
|
||||
#
|
||||
# +---------------------------------------------------------------+
|
||||
# | e107 website system
|
||||
# | /files/sql.php
|
||||
# |
|
||||
# | ?Steve Dunstan 2001-2002
|
||||
# | http://e107.org
|
||||
# | jalist@e107.org
|
||||
# |
|
||||
# | Released under the terms and conditions of the
|
||||
# | GNU General Public License (http://gnu.org).
|
||||
# +---------------------------------------------------------------+
|
||||
# Database : <variable>
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `banlist`
|
||||
#
|
||||
|
||||
CREATE TABLE banlist (
|
||||
banlist_ip varchar(100) NOT NULL default '',
|
||||
banlist_admin smallint(5) unsigned NOT NULL default '0',
|
||||
banlist_reason tinytext NOT NULL,
|
||||
PRIMARY KEY (banlist_ip)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `banner`
|
||||
#
|
||||
|
||||
CREATE TABLE banner (
|
||||
banner_id int(10) unsigned NOT NULL auto_increment,
|
||||
banner_clientname varchar(100) NOT NULL default '',
|
||||
banner_clientlogin varchar(20) NOT NULL default '',
|
||||
banner_clientpassword varchar(50) NOT NULL default '',
|
||||
banner_image varchar(150) NOT NULL default '',
|
||||
banner_clickurl varchar(150) NOT NULL default '',
|
||||
banner_impurchased int(10) unsigned NOT NULL default '0',
|
||||
banner_startdate int(10) unsigned NOT NULL default '0',
|
||||
banner_enddate int(10) unsigned NOT NULL default '0',
|
||||
banner_active tinyint(3) unsigned NOT NULL default '0',
|
||||
banner_clicks int(10) unsigned NOT NULL default '0',
|
||||
banner_impressions int(10) unsigned NOT NULL default '0',
|
||||
banner_ip text NOT NULL,
|
||||
banner_campaign varchar(150) NOT NULL default '',
|
||||
PRIMARY KEY (banner_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `comments`
|
||||
#
|
||||
|
||||
CREATE TABLE comments (
|
||||
comment_id int(10) unsigned NOT NULL auto_increment,
|
||||
comment_pid int(10) unsigned NOT NULL default '0',
|
||||
comment_item_id int(10) unsigned NOT NULL default '0',
|
||||
comment_subject varchar(100) NOT NULL default '',
|
||||
comment_author varchar(100) NOT NULL default '',
|
||||
comment_author_email varchar(200) NOT NULL default '',
|
||||
comment_datestamp int(10) unsigned NOT NULL default '0',
|
||||
comment_comment text NOT NULL,
|
||||
comment_blocked tinyint(3) unsigned NOT NULL default '0',
|
||||
comment_ip varchar(20) NOT NULL default '',
|
||||
comment_type varchar(10) NOT NULL default '0',
|
||||
comment_lock tinyint(1) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (comment_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `core`
|
||||
#
|
||||
CREATE TABLE core (
|
||||
e107_name varchar(100) NOT NULL default '',
|
||||
e107_value text NOT NULL,
|
||||
PRIMARY KEY (e107_name)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `dblog`
|
||||
#
|
||||
CREATE TABLE dblog (
|
||||
dblog_id int(10) unsigned NOT NULL auto_increment,
|
||||
dblog_type varchar(60) NOT NULL default '',
|
||||
dblog_datestamp int(10) unsigned NOT NULL default '0',
|
||||
dblog_user_id int(10) unsigned NOT NULL default '0',
|
||||
dblog_ip varchar(80) NOT NULL default '',
|
||||
dblog_title varchar(255) NOT NULL default '',
|
||||
dblog_remarks text NOT NULL,
|
||||
PRIMARY KEY (dblog_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `download`
|
||||
#
|
||||
|
||||
CREATE TABLE download (
|
||||
download_id int(10) unsigned NOT NULL auto_increment,
|
||||
download_name varchar(100) NOT NULL default '',
|
||||
download_url varchar(150) NOT NULL default '',
|
||||
download_author varchar(100) NOT NULL default '',
|
||||
download_author_email varchar(200) NOT NULL default '',
|
||||
download_author_website varchar(200) NOT NULL default '',
|
||||
download_description text NOT NULL,
|
||||
download_filesize varchar(20) NOT NULL default '',
|
||||
download_requested int(10) unsigned NOT NULL default '0',
|
||||
download_category int(10) unsigned NOT NULL default '0',
|
||||
download_active tinyint(3) unsigned NOT NULL default '0',
|
||||
download_datestamp int(10) unsigned NOT NULL default '0',
|
||||
download_thumb varchar(150) NOT NULL default '',
|
||||
download_image varchar(150) NOT NULL default '',
|
||||
download_comment tinyint(3) unsigned NOT NULL default '0',
|
||||
download_class varchar(255) NOT NULL default '0',
|
||||
download_mirror text NOT NULL,
|
||||
download_mirror_type tinyint(1) unsigned NOT NULL default '0',
|
||||
download_visible varchar(255) NOT NULL default '0',
|
||||
PRIMARY KEY (download_id),
|
||||
UNIQUE KEY download_name (download_name),
|
||||
KEY download_category (download_category)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `download_category`
|
||||
#
|
||||
|
||||
CREATE TABLE download_category (
|
||||
download_category_id int(10) unsigned NOT NULL auto_increment,
|
||||
download_category_name varchar(100) NOT NULL default '',
|
||||
download_category_description text NOT NULL,
|
||||
download_category_icon varchar(100) NOT NULL default '',
|
||||
download_category_parent int(10) unsigned NOT NULL default '0',
|
||||
download_category_class varchar(255) NOT NULL default '0',
|
||||
download_category_order int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (download_category_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `download_mirror`
|
||||
#
|
||||
|
||||
CREATE TABLE download_mirror (
|
||||
mirror_id int(10) unsigned NOT NULL auto_increment,
|
||||
mirror_name varchar(200) NOT NULL default '',
|
||||
mirror_url varchar(200) NOT NULL default '',
|
||||
mirror_image varchar(200) NOT NULL default '',
|
||||
mirror_location varchar(100) NOT NULL default '',
|
||||
mirror_description text NOT NULL,
|
||||
mirror_count int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (mirror_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `download_requests`
|
||||
#
|
||||
CREATE TABLE download_requests (
|
||||
download_request_id int(10) unsigned NOT NULL auto_increment,
|
||||
download_request_userid int(10) unsigned NOT NULL default '0',
|
||||
download_request_ip varchar(30) NOT NULL default '',
|
||||
download_request_download_id int(10) unsigned NOT NULL default '0',
|
||||
download_request_datestamp int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (download_request_id),
|
||||
KEY download_request_userid (download_request_userid),
|
||||
KEY download_request_download_id (download_request_download_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
|
||||
#
|
||||
# Table structure for table `flood`
|
||||
#
|
||||
|
||||
CREATE TABLE flood (
|
||||
flood_url text NOT NULL,
|
||||
flood_time int(10) unsigned NOT NULL default '0'
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `headlines`
|
||||
#
|
||||
|
||||
CREATE TABLE headlines (
|
||||
headline_id int(10) unsigned NOT NULL auto_increment,
|
||||
headline_url varchar(150) NOT NULL default '',
|
||||
headline_data text NOT NULL,
|
||||
headline_timestamp int(10) unsigned NOT NULL default '0',
|
||||
headline_description text NOT NULL,
|
||||
headline_image varchar(100) NOT NULL default '',
|
||||
headline_active tinyint(1) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (headline_id)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `links`
|
||||
#
|
||||
|
||||
CREATE TABLE links (
|
||||
link_id int(10) unsigned NOT NULL auto_increment,
|
||||
link_name varchar(100) NOT NULL default '',
|
||||
link_url varchar(200) NOT NULL default '',
|
||||
link_description text NOT NULL,
|
||||
link_button varchar(100) NOT NULL default '',
|
||||
link_category tinyint(3) unsigned NOT NULL default '0',
|
||||
link_order int(10) unsigned NOT NULL default '0',
|
||||
link_parent int(10) unsigned NOT NULL default '0',
|
||||
link_open tinyint(1) unsigned NOT NULL default '0',
|
||||
link_class varchar(255) NOT NULL default '0',
|
||||
PRIMARY KEY (link_id)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `menus`
|
||||
#
|
||||
|
||||
CREATE TABLE menus (
|
||||
menu_id int(10) unsigned NOT NULL auto_increment,
|
||||
menu_name varchar(100) NOT NULL default '',
|
||||
menu_location tinyint(3) unsigned NOT NULL default '0',
|
||||
menu_order tinyint(3) unsigned NOT NULL default '0',
|
||||
menu_class varchar(255) NOT NULL default '0',
|
||||
menu_pages text NOT NULL,
|
||||
menu_path varchar(100) NOT NULL default '',
|
||||
PRIMARY KEY (menu_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `news`
|
||||
#
|
||||
|
||||
CREATE TABLE news (
|
||||
news_id int(10) unsigned NOT NULL auto_increment,
|
||||
news_title varchar(200) NOT NULL default '',
|
||||
news_body text NOT NULL,
|
||||
news_extended text NOT NULL,
|
||||
news_datestamp int(10) unsigned NOT NULL default '0',
|
||||
news_author int(10) unsigned NOT NULL default '0',
|
||||
news_category tinyint(3) unsigned NOT NULL default '0',
|
||||
news_allow_comments tinyint(3) unsigned NOT NULL default '0',
|
||||
news_start int(10) unsigned NOT NULL default '0',
|
||||
news_end int(10) unsigned NOT NULL default '0',
|
||||
news_class varchar(255) NOT NULL default '0',
|
||||
news_render_type tinyint(3) unsigned NOT NULL default '0',
|
||||
news_comment_total int(10) unsigned NOT NULL default '0',
|
||||
news_summary text NOT NULL,
|
||||
news_thumbnail text NOT NULL,
|
||||
news_sticky tinyint(3) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (news_id)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `news_category`
|
||||
#
|
||||
|
||||
CREATE TABLE news_category (
|
||||
category_id int(10) unsigned NOT NULL auto_increment,
|
||||
category_name varchar(200) NOT NULL default '',
|
||||
category_icon varchar(250) NOT NULL default '',
|
||||
PRIMARY KEY (category_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `online`
|
||||
#
|
||||
|
||||
CREATE TABLE online (
|
||||
online_timestamp int(10) unsigned NOT NULL default '0',
|
||||
online_flag tinyint(3) unsigned NOT NULL default '0',
|
||||
online_user_id varchar(100) NOT NULL default '',
|
||||
online_ip varchar(15) NOT NULL default '',
|
||||
online_location varchar(100) NOT NULL default '',
|
||||
online_pagecount tinyint(3) unsigned NOT NULL default '0',
|
||||
online_active int(10) unsigned NOT NULL default '0'
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `page`
|
||||
#
|
||||
|
||||
CREATE TABLE page (
|
||||
page_id int(10) unsigned NOT NULL auto_increment,
|
||||
page_title varchar(250) NOT NULL default '',
|
||||
page_text mediumtext NOT NULL,
|
||||
page_author int(10) unsigned NOT NULL default '0',
|
||||
page_datestamp int(10) unsigned NOT NULL default '0',
|
||||
page_rating_flag tinyint(1) unsigned NOT NULL default '0',
|
||||
page_comment_flag tinyint(1) unsigned NOT NULL default '0',
|
||||
page_password varchar(50) NOT NULL default '',
|
||||
page_class varchar(250) NOT NULL default '',
|
||||
page_ip_restrict text NOT NULL,
|
||||
page_theme varchar(50) NOT NULL default '',
|
||||
PRIMARY KEY (page_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `plugin`
|
||||
#
|
||||
|
||||
CREATE TABLE plugin (
|
||||
plugin_id int(10) unsigned NOT NULL auto_increment,
|
||||
plugin_name varchar(100) NOT NULL default '',
|
||||
plugin_version varchar(10) NOT NULL default '',
|
||||
plugin_path varchar(100) NOT NULL default '',
|
||||
plugin_installflag tinyint(1) unsigned NOT NULL default '0',
|
||||
plugin_addons text NOT NULL,
|
||||
PRIMARY KEY (plugin_id),
|
||||
UNIQUE KEY plugin_path (plugin_path)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `rate`
|
||||
#
|
||||
|
||||
CREATE TABLE preset (
|
||||
preset_id int(10) unsigned NOT NULL auto_increment,
|
||||
preset_name varchar(80) NOT NULL default '',
|
||||
preset_field varchar(80) NOT NULL default '',
|
||||
preset_value varchar(255) NOT NULL default '',
|
||||
PRIMARY KEY (preset_id)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `rate`
|
||||
#
|
||||
|
||||
CREATE TABLE rate (
|
||||
rate_id int(10) unsigned NOT NULL auto_increment,
|
||||
rate_table varchar(100) NOT NULL default '',
|
||||
rate_itemid int(10) unsigned NOT NULL default '0',
|
||||
rate_rating int(10) unsigned NOT NULL default '0',
|
||||
rate_votes int(10) unsigned NOT NULL default '0',
|
||||
rate_voters text NOT NULL,
|
||||
PRIMARY KEY (rate_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `rbinary`
|
||||
#
|
||||
|
||||
CREATE TABLE rbinary (
|
||||
binary_id int(10) unsigned NOT NULL auto_increment,
|
||||
binary_name varchar(200) NOT NULL default '',
|
||||
binary_filetype varchar(100) NOT NULL default '',
|
||||
binary_data longblob NOT NULL,
|
||||
PRIMARY KEY (binary_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `session`
|
||||
#
|
||||
|
||||
CREATE TABLE session (
|
||||
session_id varchar(32) NOT NULL default '',
|
||||
session_expire int(10) unsigned NOT NULL default '0',
|
||||
session_datestamp int(10) unsigned NOT NULL default '0',
|
||||
session_ip varchar(200) NOT NULL default '',
|
||||
session_data text NOT NULL
|
||||
) TYPE=MyISAM;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `submitnews`
|
||||
#
|
||||
|
||||
CREATE TABLE submitnews (
|
||||
submitnews_id int(10) unsigned NOT NULL auto_increment,
|
||||
submitnews_name varchar(100) NOT NULL default '',
|
||||
submitnews_email varchar(100) NOT NULL default '',
|
||||
submitnews_title varchar(200) NOT NULL default '',
|
||||
submitnews_category tinyint(3) unsigned NOT NULL default '0',
|
||||
submitnews_item text NOT NULL,
|
||||
submitnews_datestamp int(10) unsigned NOT NULL default '0',
|
||||
submitnews_ip varchar(15) NOT NULL default '',
|
||||
submitnews_auth tinyint(3) unsigned NOT NULL default '0',
|
||||
submitnews_file varchar(100) NOT NULL default '',
|
||||
PRIMARY KEY (submitnews_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `tmp`
|
||||
#
|
||||
|
||||
CREATE TABLE tmp (
|
||||
tmp_ip varchar(20) NOT NULL default '',
|
||||
tmp_time int(10) unsigned NOT NULL default '0',
|
||||
tmp_info text NOT NULL,
|
||||
KEY tmp_ip (tmp_ip)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `upload`
|
||||
#
|
||||
|
||||
CREATE TABLE upload (
|
||||
upload_id int(10) unsigned NOT NULL auto_increment,
|
||||
upload_poster varchar(100) NOT NULL default '',
|
||||
upload_email varchar(100) NOT NULL default '',
|
||||
upload_website varchar(100) NOT NULL default '',
|
||||
upload_datestamp int(10) unsigned NOT NULL default '0',
|
||||
upload_name varchar(100) NOT NULL default '',
|
||||
upload_version varchar(10) NOT NULL default '',
|
||||
upload_file varchar(100) NOT NULL default '',
|
||||
upload_ss varchar(100) NOT NULL default '',
|
||||
upload_description text NOT NULL,
|
||||
upload_demo varchar(100) NOT NULL default '',
|
||||
upload_filesize int(10) unsigned NOT NULL default '0',
|
||||
upload_active tinyint(3) unsigned NOT NULL default '0',
|
||||
upload_category tinyint(3) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (upload_id),
|
||||
KEY upload_active (upload_active)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `user`
|
||||
#
|
||||
|
||||
CREATE TABLE user (
|
||||
user_id int(10) unsigned NOT NULL auto_increment,
|
||||
user_name varchar(100) NOT NULL default '',
|
||||
user_loginname varchar(100) NOT NULL default '',
|
||||
user_customtitle varchar(100) NOT NULL default '',
|
||||
user_password varchar(32) NOT NULL default '',
|
||||
user_sess varchar(100) NOT NULL default '',
|
||||
user_email varchar(100) NOT NULL default '',
|
||||
user_signature text NOT NULL,
|
||||
user_image varchar(100) NOT NULL default '',
|
||||
user_timezone varchar(3) NOT NULL default '',
|
||||
user_hideemail tinyint(3) unsigned NOT NULL default '0',
|
||||
user_join int(10) unsigned NOT NULL default '0',
|
||||
user_lastvisit int(10) unsigned NOT NULL default '0',
|
||||
user_currentvisit int(10) unsigned NOT NULL default '0',
|
||||
user_lastpost int(10) unsigned NOT NULL default '0',
|
||||
user_chats int(10) unsigned NOT NULL default '0',
|
||||
user_comments int(10) unsigned NOT NULL default '0',
|
||||
user_forums int(10) unsigned NOT NULL default '0',
|
||||
user_ip varchar(20) NOT NULL default '',
|
||||
user_ban tinyint(3) unsigned NOT NULL default '0',
|
||||
user_prefs text NOT NULL,
|
||||
user_new text NOT NULL,
|
||||
user_viewed text NOT NULL,
|
||||
user_visits int(10) unsigned NOT NULL default '0',
|
||||
user_admin tinyint(3) unsigned NOT NULL default '0',
|
||||
user_login varchar(100) NOT NULL default '',
|
||||
user_class text NOT NULL,
|
||||
user_perms text NOT NULL,
|
||||
user_realm text NOT NULL,
|
||||
user_pwchange int(10) unsigned NOT NULL default '0',
|
||||
user_xup varchar(100) NOT NULL default '',
|
||||
PRIMARY KEY (user_id),
|
||||
UNIQUE KEY user_name (user_name),
|
||||
KEY user_ban_index (user_ban)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `userclass_classes`
|
||||
#
|
||||
CREATE TABLE userclass_classes (
|
||||
userclass_id tinyint(3) unsigned NOT NULL default '0',
|
||||
userclass_name varchar(100) NOT NULL default '',
|
||||
userclass_description varchar(250) NOT NULL default '',
|
||||
userclass_editclass tinyint(3) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (userclass_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
#
|
||||
# Table structure for table `e107_user_extended`
|
||||
#
|
||||
|
||||
CREATE TABLE user_extended (
|
||||
user_extended_id int(10) unsigned NOT NULL default '0',
|
||||
user_hidden_fields text NOT NULL,
|
||||
PRIMARY KEY (user_extended_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
|
||||
#
|
||||
# Table structure for table `e107_user_extended_struct`
|
||||
#
|
||||
|
||||
CREATE TABLE user_extended_struct (
|
||||
user_extended_struct_id int(10) unsigned NOT NULL auto_increment,
|
||||
user_extended_struct_name varchar(255) NOT NULL default '',
|
||||
user_extended_struct_text varchar(255) NOT NULL default '',
|
||||
user_extended_struct_type tinyint(3) unsigned NOT NULL default '0',
|
||||
user_extended_struct_parms varchar(255) NOT NULL default '',
|
||||
user_extended_struct_values text NOT NULL,
|
||||
user_extended_struct_default varchar(255) NOT NULL default '',
|
||||
user_extended_struct_read tinyint(3) unsigned NOT NULL default '0',
|
||||
user_extended_struct_write tinyint(3) unsigned NOT NULL default '0',
|
||||
user_extended_struct_required tinyint(3) unsigned NOT NULL default '0',
|
||||
user_extended_struct_signup tinyint(3) unsigned NOT NULL default '0',
|
||||
user_extended_struct_applicable tinyint(3) unsigned NOT NULL default '0',
|
||||
user_extended_struct_order int(10) unsigned NOT NULL default '0',
|
||||
user_extended_struct_parent int(10) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (user_extended_struct_id)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
||||
|
||||
|
||||
#
|
||||
# Table structure for table `generic`
|
||||
#
|
||||
CREATE TABLE generic (
|
||||
gen_id int(10) unsigned NOT NULL auto_increment,
|
||||
gen_type varchar(80) NOT NULL default '',
|
||||
gen_datestamp int(10) unsigned NOT NULL default '0',
|
||||
gen_user_id int(10) unsigned NOT NULL default '0',
|
||||
gen_ip varchar(80) NOT NULL default '',
|
||||
gen_intdata int(10) unsigned NOT NULL default '0',
|
||||
gen_chardata text NOT NULL,
|
||||
PRIMARY KEY (gen_id),
|
||||
KEY gen_type (gen_type)
|
||||
) TYPE=MyISAM;
|
||||
# --------------------------------------------------------
|
0
e107_admin/sql/db_update/index.html
Normal file
0
e107_admin/sql/db_update/index.html
Normal file
271
e107_admin/sql/extended_country.php
Normal file
271
e107_admin/sql/extended_country.php
Normal file
@@ -0,0 +1,271 @@
|
||||
<?php
|
||||
/*
|
||||
+ ----------------------------------------------------------------------------+
|
||||
| e107 website system
|
||||
|
|
||||
| <20>Steve Dunstan 2001-2002
|
||||
| http://e107.org
|
||||
| jalist@e107.org
|
||||
|
|
||||
| Released under the terms and conditions of the
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_admin/sql/extended_country.php,v $
|
||||
| $Revision: 1.1.1.1 $
|
||||
| $Date: 2006-12-02 04:33:34 $
|
||||
| $Author: mcfly_e107 $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
header("location:../index.php");
|
||||
exit;
|
||||
?>
|
||||
|
||||
CREATE TABLE user_extended_country (
|
||||
country_code char(3) NOT NULL default '',
|
||||
country_name char(52) NOT NULL default '',
|
||||
country_continent enum('Asia','Europe','North America','Africa','Oceania','Antarctica','South America') NOT NULL default 'Asia',
|
||||
country_region char(26) NOT NULL default '',
|
||||
country_iso char(2) NOT NULL default '',
|
||||
PRIMARY KEY (country_code),
|
||||
KEY country_iso (country_iso)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
INSERT INTO user_extended_country VALUES('AFG', 'Afghanistan', 'Asia', 'Southern and Central Asia', 'AF');
|
||||
INSERT INTO user_extended_country VALUES('NLD', 'Netherlands', 'Europe', 'Western Europe', 'NL');
|
||||
INSERT INTO user_extended_country VALUES('ANT', 'Netherlands Antilles', 'North America', 'Caribbean', 'AN');
|
||||
INSERT INTO user_extended_country VALUES('ALB', 'Albania', 'Europe', 'Southern Europe', 'AL');
|
||||
INSERT INTO user_extended_country VALUES('DZA', 'Algeria', 'Africa', 'Northern Africa', 'DZ');
|
||||
INSERT INTO user_extended_country VALUES('ASM', 'American Samoa', 'Oceania', 'Polynesia', 'AS');
|
||||
INSERT INTO user_extended_country VALUES('AND', 'Andorra', 'Europe', 'Southern Europe', 'AD');
|
||||
INSERT INTO user_extended_country VALUES('AGO', 'Angola', 'Africa', 'Central Africa', 'AO');
|
||||
INSERT INTO user_extended_country VALUES('AIA', 'Anguilla', 'North America', 'Caribbean', 'AI');
|
||||
INSERT INTO user_extended_country VALUES('ATG', 'Antigua and Barbuda', 'North America', 'Caribbean', 'AG');
|
||||
INSERT INTO user_extended_country VALUES('ARE', 'United Arab Emirates', 'Asia', 'Middle East', 'AE');
|
||||
INSERT INTO user_extended_country VALUES('ARG', 'Argentina', 'South America', 'South America', 'AR');
|
||||
INSERT INTO user_extended_country VALUES('ARM', 'Armenia', 'Asia', 'Middle East', 'AM');
|
||||
INSERT INTO user_extended_country VALUES('ABW', 'Aruba', 'North America', 'Caribbean', 'AW');
|
||||
INSERT INTO user_extended_country VALUES('AUS', 'Australia', 'Oceania', 'Australia and New Zealand', 'AU');
|
||||
INSERT INTO user_extended_country VALUES('AZE', 'Azerbaijan', 'Asia', 'Middle East', 'AZ');
|
||||
INSERT INTO user_extended_country VALUES('BHS', 'Bahamas', 'North America', 'Caribbean', 'BS');
|
||||
INSERT INTO user_extended_country VALUES('BHR', 'Bahrain', 'Asia', 'Middle East', 'BH');
|
||||
INSERT INTO user_extended_country VALUES('BGD', 'Bangladesh', 'Asia', 'Southern and Central Asia', 'BD');
|
||||
INSERT INTO user_extended_country VALUES('BRB', 'Barbados', 'North America', 'Caribbean', 'BB');
|
||||
INSERT INTO user_extended_country VALUES('BEL', 'Belgium', 'Europe', 'Western Europe', 'BE');
|
||||
INSERT INTO user_extended_country VALUES('BLZ', 'Belize', 'North America', 'Central America', 'BZ');
|
||||
INSERT INTO user_extended_country VALUES('BEN', 'Benin', 'Africa', 'Western Africa', 'BJ');
|
||||
INSERT INTO user_extended_country VALUES('BMU', 'Bermuda', 'North America', 'North America', 'BM');
|
||||
INSERT INTO user_extended_country VALUES('BTN', 'Bhutan', 'Asia', 'Southern and Central Asia', 'BT');
|
||||
INSERT INTO user_extended_country VALUES('BOL', 'Bolivia', 'South America', 'South America', 'BO');
|
||||
INSERT INTO user_extended_country VALUES('BIH', 'Bosnia and Herzegovina', 'Europe', 'Southern Europe', 'BA');
|
||||
INSERT INTO user_extended_country VALUES('BWA', 'Botswana', 'Africa', 'Southern Africa', 'BW');
|
||||
INSERT INTO user_extended_country VALUES('BRA', 'Brazil', 'South America', 'South America', 'BR');
|
||||
INSERT INTO user_extended_country VALUES('GBR', 'United Kingdom', 'Europe', 'British Islands', 'GB');
|
||||
INSERT INTO user_extended_country VALUES('VGB', 'Virgin Islands, British', 'North America', 'Caribbean', 'VG');
|
||||
INSERT INTO user_extended_country VALUES('BRN', 'Brunei', 'Asia', 'Southeast Asia', 'BN');
|
||||
INSERT INTO user_extended_country VALUES('BGR', 'Bulgaria', 'Europe', 'Eastern Europe', 'BG');
|
||||
INSERT INTO user_extended_country VALUES('BFA', 'Burkina Faso', 'Africa', 'Western Africa', 'BF');
|
||||
INSERT INTO user_extended_country VALUES('BDI', 'Burundi', 'Africa', 'Eastern Africa', 'BI');
|
||||
INSERT INTO user_extended_country VALUES('CYM', 'Cayman Islands', 'North America', 'Caribbean', 'KY');
|
||||
INSERT INTO user_extended_country VALUES('CHL', 'Chile', 'South America', 'South America', 'CL');
|
||||
INSERT INTO user_extended_country VALUES('COK', 'Cook Islands', 'Oceania', 'Polynesia', 'CK');
|
||||
INSERT INTO user_extended_country VALUES('CRI', 'Costa Rica', 'North America', 'Central America', 'CR');
|
||||
INSERT INTO user_extended_country VALUES('DJI', 'Djibouti', 'Africa', 'Eastern Africa', 'DJ');
|
||||
INSERT INTO user_extended_country VALUES('DMA', 'Dominica', 'North America', 'Caribbean', 'DM');
|
||||
INSERT INTO user_extended_country VALUES('DOM', 'Dominican Republic', 'North America', 'Caribbean', 'DO');
|
||||
INSERT INTO user_extended_country VALUES('ECU', 'Ecuador', 'South America', 'South America', 'EC');
|
||||
INSERT INTO user_extended_country VALUES('EGY', 'Egypt', 'Africa', 'Northern Africa', 'EG');
|
||||
INSERT INTO user_extended_country VALUES('SLV', 'El Salvador', 'North America', 'Central America', 'SV');
|
||||
INSERT INTO user_extended_country VALUES('ERI', 'Eritrea', 'Africa', 'Eastern Africa', 'ER');
|
||||
INSERT INTO user_extended_country VALUES('ESP', 'Spain', 'Europe', 'Southern Europe', 'ES');
|
||||
INSERT INTO user_extended_country VALUES('ZAF', 'South Africa', 'Africa', 'Southern Africa', 'ZA');
|
||||
INSERT INTO user_extended_country VALUES('ETH', 'Ethiopia', 'Africa', 'Eastern Africa', 'ET');
|
||||
INSERT INTO user_extended_country VALUES('FLK', 'Falkland Islands', 'South America', 'South America', 'FK');
|
||||
INSERT INTO user_extended_country VALUES('FJI', 'Fiji Islands', 'Oceania', 'Melanesia', 'FJ');
|
||||
INSERT INTO user_extended_country VALUES('PHL', 'Philippines', 'Asia', 'Southeast Asia', 'PH');
|
||||
INSERT INTO user_extended_country VALUES('FRO', 'Faroe Islands', 'Europe', 'Nordic Countries', 'FO');
|
||||
INSERT INTO user_extended_country VALUES('GAB', 'Gabon', 'Africa', 'Central Africa', 'GA');
|
||||
INSERT INTO user_extended_country VALUES('GMB', 'Gambia', 'Africa', 'Western Africa', 'GM');
|
||||
INSERT INTO user_extended_country VALUES('GEO', 'Georgia', 'Asia', 'Middle East', 'GE');
|
||||
INSERT INTO user_extended_country VALUES('GHA', 'Ghana', 'Africa', 'Western Africa', 'GH');
|
||||
INSERT INTO user_extended_country VALUES('GIB', 'Gibraltar', 'Europe', 'Southern Europe', 'GI');
|
||||
INSERT INTO user_extended_country VALUES('GRD', 'Grenada', 'North America', 'Caribbean', 'GD');
|
||||
INSERT INTO user_extended_country VALUES('GRL', 'Greenland', 'North America', 'North America', 'GL');
|
||||
INSERT INTO user_extended_country VALUES('GLP', 'Guadeloupe', 'North America', 'Caribbean', 'GP');
|
||||
INSERT INTO user_extended_country VALUES('GUM', 'Guam', 'Oceania', 'Micronesia', 'GU');
|
||||
INSERT INTO user_extended_country VALUES('GTM', 'Guatemala', 'North America', 'Central America', 'GT');
|
||||
INSERT INTO user_extended_country VALUES('GIN', 'Guinea', 'Africa', 'Western Africa', 'GN');
|
||||
INSERT INTO user_extended_country VALUES('GNB', 'Guinea-Bissau', 'Africa', 'Western Africa', 'GW');
|
||||
INSERT INTO user_extended_country VALUES('GUY', 'Guyana', 'South America', 'South America', 'GY');
|
||||
INSERT INTO user_extended_country VALUES('HTI', 'Haiti', 'North America', 'Caribbean', 'HT');
|
||||
INSERT INTO user_extended_country VALUES('HND', 'Honduras', 'North America', 'Central America', 'HN');
|
||||
INSERT INTO user_extended_country VALUES('HKG', 'Hong Kong', 'Asia', 'Eastern Asia', 'HK');
|
||||
INSERT INTO user_extended_country VALUES('SJM', 'Svalbard and Jan Mayen', 'Europe', 'Nordic Countries', 'SJ');
|
||||
INSERT INTO user_extended_country VALUES('IDN', 'Indonesia', 'Asia', 'Southeast Asia', 'ID');
|
||||
INSERT INTO user_extended_country VALUES('IND', 'India', 'Asia', 'Southern and Central Asia', 'IN');
|
||||
INSERT INTO user_extended_country VALUES('IRQ', 'Iraq', 'Asia', 'Middle East', 'IQ');
|
||||
INSERT INTO user_extended_country VALUES('IRN', 'Iran', 'Asia', 'Southern and Central Asia', 'IR');
|
||||
INSERT INTO user_extended_country VALUES('IRL', 'Ireland', 'Europe', 'British Islands', 'IE');
|
||||
INSERT INTO user_extended_country VALUES('ISL', 'Iceland', 'Europe', 'Nordic Countries', 'IS');
|
||||
INSERT INTO user_extended_country VALUES('ISR', 'Israel', 'Asia', 'Middle East', 'IL');
|
||||
INSERT INTO user_extended_country VALUES('ITA', 'Italy', 'Europe', 'Southern Europe', 'IT');
|
||||
INSERT INTO user_extended_country VALUES('TMP', 'East Timor', 'Asia', 'Southeast Asia', 'TP');
|
||||
INSERT INTO user_extended_country VALUES('AUT', 'Austria', 'Europe', 'Western Europe', 'AT');
|
||||
INSERT INTO user_extended_country VALUES('JAM', 'Jamaica', 'North America', 'Caribbean', 'JM');
|
||||
INSERT INTO user_extended_country VALUES('JPN', 'Japan', 'Asia', 'Eastern Asia', 'JP');
|
||||
INSERT INTO user_extended_country VALUES('YEM', 'Yemen', 'Asia', 'Middle East', 'YE');
|
||||
INSERT INTO user_extended_country VALUES('JOR', 'Jordan', 'Asia', 'Middle East', 'JO');
|
||||
INSERT INTO user_extended_country VALUES('CXR', 'Christmas Island', 'Oceania', 'Australia and New Zealand', 'CX');
|
||||
INSERT INTO user_extended_country VALUES('YUG', 'Serbia and Montenegro', 'Europe', 'Southern Europe', 'YU');
|
||||
INSERT INTO user_extended_country VALUES('KHM', 'Cambodia', 'Asia', 'Southeast Asia', 'KH');
|
||||
INSERT INTO user_extended_country VALUES('CMR', 'Cameroon', 'Africa', 'Central Africa', 'CM');
|
||||
INSERT INTO user_extended_country VALUES('CAN', 'Canada', 'North America', 'North America', 'CA');
|
||||
INSERT INTO user_extended_country VALUES('CPV', 'Cape Verde', 'Africa', 'Western Africa', 'CV');
|
||||
INSERT INTO user_extended_country VALUES('KAZ', 'Kazakstan', 'Asia', 'Southern and Central Asia', 'KZ');
|
||||
INSERT INTO user_extended_country VALUES('KEN', 'Kenya', 'Africa', 'Eastern Africa', 'KE');
|
||||
INSERT INTO user_extended_country VALUES('CAF', 'Central African Republic', 'Africa', 'Central Africa', 'CF');
|
||||
INSERT INTO user_extended_country VALUES('CHN', 'China', 'Asia', 'Eastern Asia', 'CN');
|
||||
INSERT INTO user_extended_country VALUES('KGZ', 'Kyrgyzstan', 'Asia', 'Southern and Central Asia', 'KG');
|
||||
INSERT INTO user_extended_country VALUES('KIR', 'Kiribati', 'Oceania', 'Micronesia', 'KI');
|
||||
INSERT INTO user_extended_country VALUES('COL', 'Colombia', 'South America', 'South America', 'CO');
|
||||
INSERT INTO user_extended_country VALUES('COM', 'Comoros', 'Africa', 'Eastern Africa', 'KM');
|
||||
INSERT INTO user_extended_country VALUES('COG', 'Congo', 'Africa', 'Central Africa', 'CG');
|
||||
INSERT INTO user_extended_country VALUES('COD', 'Congo, The Democratic Republic of the', 'Africa', 'Central Africa', 'CD');
|
||||
INSERT INTO user_extended_country VALUES('CCK', 'Cocos (Keeling) Islands', 'Oceania', 'Australia and New Zealand', 'CC');
|
||||
INSERT INTO user_extended_country VALUES('PRK', 'North Korea', 'Asia', 'Eastern Asia', 'KP');
|
||||
INSERT INTO user_extended_country VALUES('KOR', 'South Korea', 'Asia', 'Eastern Asia', 'KR');
|
||||
INSERT INTO user_extended_country VALUES('GRC', 'Greece', 'Europe', 'Southern Europe', 'GR');
|
||||
INSERT INTO user_extended_country VALUES('HRV', 'Croatia', 'Europe', 'Southern Europe', 'HR');
|
||||
INSERT INTO user_extended_country VALUES('CUB', 'Cuba', 'North America', 'Caribbean', 'CU');
|
||||
INSERT INTO user_extended_country VALUES('KWT', 'Kuwait', 'Asia', 'Middle East', 'KW');
|
||||
INSERT INTO user_extended_country VALUES('CYP', 'Cyprus', 'Asia', 'Middle East', 'CY');
|
||||
INSERT INTO user_extended_country VALUES('LAO', 'Laos', 'Asia', 'Southeast Asia', 'LA');
|
||||
INSERT INTO user_extended_country VALUES('LVA', 'Latvia', 'Europe', 'Baltic Countries', 'LV');
|
||||
INSERT INTO user_extended_country VALUES('LSO', 'Lesotho', 'Africa', 'Southern Africa', 'LS');
|
||||
INSERT INTO user_extended_country VALUES('LBN', 'Lebanon', 'Asia', 'Middle East', 'LB');
|
||||
INSERT INTO user_extended_country VALUES('LBR', 'Liberia', 'Africa', 'Western Africa', 'LR');
|
||||
INSERT INTO user_extended_country VALUES('LBY', 'Libyan Arab Jamahiriya', 'Africa', 'Northern Africa', 'LY');
|
||||
INSERT INTO user_extended_country VALUES('LIE', 'Liechtenstein', 'Europe', 'Western Europe', 'LI');
|
||||
INSERT INTO user_extended_country VALUES('LTU', 'Lithuania', 'Europe', 'Baltic Countries', 'LT');
|
||||
INSERT INTO user_extended_country VALUES('LUX', 'Luxembourg', 'Europe', 'Western Europe', 'LU');
|
||||
INSERT INTO user_extended_country VALUES('ESH', 'Western Sahara', 'Africa', 'Northern Africa', 'EH');
|
||||
INSERT INTO user_extended_country VALUES('MAC', 'Macao', 'Asia', 'Eastern Asia', 'MO');
|
||||
INSERT INTO user_extended_country VALUES('MDG', 'Madagascar', 'Africa', 'Eastern Africa', 'MG');
|
||||
INSERT INTO user_extended_country VALUES('MKD', 'Macedonia', 'Europe', 'Southern Europe', 'MK');
|
||||
INSERT INTO user_extended_country VALUES('MWI', 'Malawi', 'Africa', 'Eastern Africa', 'MW');
|
||||
INSERT INTO user_extended_country VALUES('MDV', 'Maldives', 'Asia', 'Southern and Central Asia', 'MV');
|
||||
INSERT INTO user_extended_country VALUES('MYS', 'Malaysia', 'Asia', 'Southeast Asia', 'MY');
|
||||
INSERT INTO user_extended_country VALUES('MLI', 'Mali', 'Africa', 'Western Africa', 'ML');
|
||||
INSERT INTO user_extended_country VALUES('MLT', 'Malta', 'Europe', 'Southern Europe', 'MT');
|
||||
INSERT INTO user_extended_country VALUES('MAR', 'Morocco', 'Africa', 'Northern Africa', 'MA');
|
||||
INSERT INTO user_extended_country VALUES('MHL', 'Marshall Islands', 'Oceania', 'Micronesia', 'MH');
|
||||
INSERT INTO user_extended_country VALUES('MTQ', 'Martinique', 'North America', 'Caribbean', 'MQ');
|
||||
INSERT INTO user_extended_country VALUES('MRT', 'Mauritania', 'Africa', 'Western Africa', 'MR');
|
||||
INSERT INTO user_extended_country VALUES('MUS', 'Mauritius', 'Africa', 'Eastern Africa', 'MU');
|
||||
INSERT INTO user_extended_country VALUES('MYT', 'Mayotte', 'Africa', 'Eastern Africa', 'YT');
|
||||
INSERT INTO user_extended_country VALUES('MEX', 'Mexico', 'North America', 'Central America', 'MX');
|
||||
INSERT INTO user_extended_country VALUES('FSM', 'Micronesia, Federated States of', 'Oceania', 'Micronesia', 'FM');
|
||||
INSERT INTO user_extended_country VALUES('MDA', 'Moldova', 'Europe', 'Eastern Europe', 'MD');
|
||||
INSERT INTO user_extended_country VALUES('MCO', 'Monaco', 'Europe', 'Western Europe', 'MC');
|
||||
INSERT INTO user_extended_country VALUES('MNG', 'Mongolia', 'Asia', 'Eastern Asia', 'MN');
|
||||
INSERT INTO user_extended_country VALUES('MSR', 'Montserrat', 'North America', 'Caribbean', 'MS');
|
||||
INSERT INTO user_extended_country VALUES('MOZ', 'Mozambique', 'Africa', 'Eastern Africa', 'MZ');
|
||||
INSERT INTO user_extended_country VALUES('MMR', 'Myanmar', 'Asia', 'Southeast Asia', 'MM');
|
||||
INSERT INTO user_extended_country VALUES('NAM', 'Namibia', 'Africa', 'Southern Africa', 'NA');
|
||||
INSERT INTO user_extended_country VALUES('NRU', 'Nauru', 'Oceania', 'Micronesia', 'NR');
|
||||
INSERT INTO user_extended_country VALUES('NPL', 'Nepal', 'Asia', 'Southern and Central Asia', 'NP');
|
||||
INSERT INTO user_extended_country VALUES('NIC', 'Nicaragua', 'North America', 'Central America', 'NI');
|
||||
INSERT INTO user_extended_country VALUES('NER', 'Niger', 'Africa', 'Western Africa', 'NE');
|
||||
INSERT INTO user_extended_country VALUES('NGA', 'Nigeria', 'Africa', 'Western Africa', 'NG');
|
||||
INSERT INTO user_extended_country VALUES('NIU', 'Niue', 'Oceania', 'Polynesia', 'NU');
|
||||
INSERT INTO user_extended_country VALUES('NFK', 'Norfolk Island', 'Oceania', 'Australia and New Zealand', 'NF');
|
||||
INSERT INTO user_extended_country VALUES('NOR', 'Norway', 'Europe', 'Nordic Countries', 'NO');
|
||||
INSERT INTO user_extended_country VALUES('CIV', 'Côte d’Ivoire', 'Africa', 'Western Africa', 'CI');
|
||||
INSERT INTO user_extended_country VALUES('OMN', 'Oman', 'Asia', 'Middle East', 'OM');
|
||||
INSERT INTO user_extended_country VALUES('PAK', 'Pakistan', 'Asia', 'Southern and Central Asia', 'PK');
|
||||
INSERT INTO user_extended_country VALUES('PLW', 'Palau', 'Oceania', 'Micronesia', 'PW');
|
||||
INSERT INTO user_extended_country VALUES('PAN', 'Panama', 'North America', 'Central America', 'PA');
|
||||
INSERT INTO user_extended_country VALUES('PNG', 'Papua New Guinea', 'Oceania', 'Melanesia', 'PG');
|
||||
INSERT INTO user_extended_country VALUES('PRY', 'Paraguay', 'South America', 'South America', 'PY');
|
||||
INSERT INTO user_extended_country VALUES('PER', 'Peru', 'South America', 'South America', 'PE');
|
||||
INSERT INTO user_extended_country VALUES('PCN', 'Pitcairn', 'Oceania', 'Polynesia', 'PN');
|
||||
INSERT INTO user_extended_country VALUES('MNP', 'Northern Mariana Islands', 'Oceania', 'Micronesia', 'MP');
|
||||
INSERT INTO user_extended_country VALUES('PRT', 'Portugal', 'Europe', 'Southern Europe', 'PT');
|
||||
INSERT INTO user_extended_country VALUES('PRI', 'Puerto Rico', 'North America', 'Caribbean', 'PR');
|
||||
INSERT INTO user_extended_country VALUES('POL', 'Poland', 'Europe', 'Eastern Europe', 'PL');
|
||||
INSERT INTO user_extended_country VALUES('GNQ', 'Equatorial Guinea', 'Africa', 'Central Africa', 'GQ');
|
||||
INSERT INTO user_extended_country VALUES('QAT', 'Qatar', 'Asia', 'Middle East', 'QA');
|
||||
INSERT INTO user_extended_country VALUES('FRA', 'France', 'Europe', 'Western Europe', 'FR');
|
||||
INSERT INTO user_extended_country VALUES('GUF', 'French Guiana', 'South America', 'South America', 'GF');
|
||||
INSERT INTO user_extended_country VALUES('PYF', 'French Polynesia', 'Oceania', 'Polynesia', 'PF');
|
||||
INSERT INTO user_extended_country VALUES('REU', 'Réunion', 'Africa', 'Eastern Africa', 'RE');
|
||||
INSERT INTO user_extended_country VALUES('ROM', 'Romania', 'Europe', 'Eastern Europe', 'RO');
|
||||
INSERT INTO user_extended_country VALUES('RWA', 'Rwanda', 'Africa', 'Eastern Africa', 'RW');
|
||||
INSERT INTO user_extended_country VALUES('SWE', 'Sweden', 'Europe', 'Nordic Countries', 'SE');
|
||||
INSERT INTO user_extended_country VALUES('SHN', 'Saint Helena', 'Africa', 'Western Africa', 'SH');
|
||||
INSERT INTO user_extended_country VALUES('KNA', 'Saint Kitts and Nevis', 'North America', 'Caribbean', 'KN');
|
||||
INSERT INTO user_extended_country VALUES('LCA', 'Saint Lucia', 'North America', 'Caribbean', 'LC');
|
||||
INSERT INTO user_extended_country VALUES('VCT', 'Saint Vincent and the Grenadines', 'North America', 'Caribbean', 'VC');
|
||||
INSERT INTO user_extended_country VALUES('SPM', 'Saint Pierre and Miquelon', 'North America', 'North America', 'PM');
|
||||
INSERT INTO user_extended_country VALUES('DEU', 'Germany', 'Europe', 'Western Europe', 'DE');
|
||||
INSERT INTO user_extended_country VALUES('SLB', 'Solomon Islands', 'Oceania', 'Melanesia', 'SB');
|
||||
INSERT INTO user_extended_country VALUES('ZMB', 'Zambia', 'Africa', 'Eastern Africa', 'ZM');
|
||||
INSERT INTO user_extended_country VALUES('WSM', 'Samoa', 'Oceania', 'Polynesia', 'WS');
|
||||
INSERT INTO user_extended_country VALUES('SMR', 'San Marino', 'Europe', 'Southern Europe', 'SM');
|
||||
INSERT INTO user_extended_country VALUES('STP', 'Sao Tome and Principe', 'Africa', 'Central Africa', 'ST');
|
||||
INSERT INTO user_extended_country VALUES('SAU', 'Saudi Arabia', 'Asia', 'Middle East', 'SA');
|
||||
INSERT INTO user_extended_country VALUES('SEN', 'Senegal', 'Africa', 'Western Africa', 'SN');
|
||||
INSERT INTO user_extended_country VALUES('SYC', 'Seychelles', 'Africa', 'Eastern Africa', 'SC');
|
||||
INSERT INTO user_extended_country VALUES('SLE', 'Sierra Leone', 'Africa', 'Western Africa', 'SL');
|
||||
INSERT INTO user_extended_country VALUES('SGP', 'Singapore', 'Asia', 'Southeast Asia', 'SG');
|
||||
INSERT INTO user_extended_country VALUES('SVK', 'Slovakia', 'Europe', 'Eastern Europe', 'SK');
|
||||
INSERT INTO user_extended_country VALUES('SVN', 'Slovenia', 'Europe', 'Southern Europe', 'SI');
|
||||
INSERT INTO user_extended_country VALUES('SOM', 'Somalia', 'Africa', 'Eastern Africa', 'SO');
|
||||
INSERT INTO user_extended_country VALUES('LKA', 'Sri Lanka', 'Asia', 'Southern and Central Asia', 'LK');
|
||||
INSERT INTO user_extended_country VALUES('SDN', 'Sudan', 'Africa', 'Northern Africa', 'SD');
|
||||
INSERT INTO user_extended_country VALUES('FIN', 'Finland', 'Europe', 'Nordic Countries', 'FI');
|
||||
INSERT INTO user_extended_country VALUES('SUR', 'Suriname', 'South America', 'South America', 'SR');
|
||||
INSERT INTO user_extended_country VALUES('SWZ', 'Swaziland', 'Africa', 'Southern Africa', 'SZ');
|
||||
INSERT INTO user_extended_country VALUES('CHE', 'Switzerland', 'Europe', 'Western Europe', 'CH');
|
||||
INSERT INTO user_extended_country VALUES('SYR', 'Syria', 'Asia', 'Middle East', 'SY');
|
||||
INSERT INTO user_extended_country VALUES('TJK', 'Tajikistan', 'Asia', 'Southern and Central Asia', 'TJ');
|
||||
INSERT INTO user_extended_country VALUES('TWN', 'Taiwan', 'Asia', 'Eastern Asia', 'TW');
|
||||
INSERT INTO user_extended_country VALUES('TZA', 'Tanzania', 'Africa', 'Eastern Africa', 'TZ');
|
||||
INSERT INTO user_extended_country VALUES('DNK', 'Denmark', 'Europe', 'Nordic Countries', 'DK');
|
||||
INSERT INTO user_extended_country VALUES('THA', 'Thailand', 'Asia', 'Southeast Asia', 'TH');
|
||||
INSERT INTO user_extended_country VALUES('TGO', 'Togo', 'Africa', 'Western Africa', 'TG');
|
||||
INSERT INTO user_extended_country VALUES('TKL', 'Tokelau', 'Oceania', 'Polynesia', 'TK');
|
||||
INSERT INTO user_extended_country VALUES('TON', 'Tonga', 'Oceania', 'Polynesia', 'TO');
|
||||
INSERT INTO user_extended_country VALUES('TTO', 'Trinidad and Tobago', 'North America', 'Caribbean', 'TT');
|
||||
INSERT INTO user_extended_country VALUES('TCD', 'Chad', 'Africa', 'Central Africa', 'TD');
|
||||
INSERT INTO user_extended_country VALUES('CZE', 'Czech Republic', 'Europe', 'Eastern Europe', 'CZ');
|
||||
INSERT INTO user_extended_country VALUES('TUN', 'Tunisia', 'Africa', 'Northern Africa', 'TN');
|
||||
INSERT INTO user_extended_country VALUES('TUR', 'Turkey', 'Asia', 'Middle East', 'TR');
|
||||
INSERT INTO user_extended_country VALUES('TKM', 'Turkmenistan', 'Asia', 'Southern and Central Asia', 'TM');
|
||||
INSERT INTO user_extended_country VALUES('TCA', 'Turks and Caicos Islands', 'North America', 'Caribbean', 'TC');
|
||||
INSERT INTO user_extended_country VALUES('TUV', 'Tuvalu', 'Oceania', 'Polynesia', 'TV');
|
||||
INSERT INTO user_extended_country VALUES('UGA', 'Uganda', 'Africa', 'Eastern Africa', 'UG');
|
||||
INSERT INTO user_extended_country VALUES('UKR', 'Ukraine', 'Europe', 'Eastern Europe', 'UA');
|
||||
INSERT INTO user_extended_country VALUES('HUN', 'Hungary', 'Europe', 'Eastern Europe', 'HU');
|
||||
INSERT INTO user_extended_country VALUES('URY', 'Uruguay', 'South America', 'South America', 'UY');
|
||||
INSERT INTO user_extended_country VALUES('NCL', 'New Caledonia', 'Oceania', 'Melanesia', 'NC');
|
||||
INSERT INTO user_extended_country VALUES('NZL', 'New Zealand', 'Oceania', 'Australia and New Zealand', 'NZ');
|
||||
INSERT INTO user_extended_country VALUES('UZB', 'Uzbekistan', 'Asia', 'Southern and Central Asia', 'UZ');
|
||||
INSERT INTO user_extended_country VALUES('BLR', 'Belarus', 'Europe', 'Eastern Europe', 'BY');
|
||||
INSERT INTO user_extended_country VALUES('WLF', 'Wallis and Futuna', 'Oceania', 'Polynesia', 'WF');
|
||||
INSERT INTO user_extended_country VALUES('VUT', 'Vanuatu', 'Oceania', 'Melanesia', 'VU');
|
||||
INSERT INTO user_extended_country VALUES('VAT', 'Holy See (Vatican City State)', 'Europe', 'Southern Europe', 'VA');
|
||||
INSERT INTO user_extended_country VALUES('VEN', 'Venezuela', 'South America', 'South America', 'VE');
|
||||
INSERT INTO user_extended_country VALUES('RUS', 'Russian Federation', 'Europe', 'Eastern Europe', 'RU');
|
||||
INSERT INTO user_extended_country VALUES('VNM', 'Vietnam', 'Asia', 'Southeast Asia', 'VN');
|
||||
INSERT INTO user_extended_country VALUES('EST', 'Estonia', 'Europe', 'Baltic Countries', 'EE');
|
||||
INSERT INTO user_extended_country VALUES('USA', 'United States', 'North America', 'North America', 'US');
|
||||
INSERT INTO user_extended_country VALUES('VIR', 'Virgin Islands, U.S.', 'North America', 'Caribbean', 'VI');
|
||||
INSERT INTO user_extended_country VALUES('ZWE', 'Zimbabwe', 'Africa', 'Eastern Africa', 'ZW');
|
||||
INSERT INTO user_extended_country VALUES('PSE', 'Palestine', 'Asia', 'Middle East', 'PS');
|
||||
INSERT INTO user_extended_country VALUES('ATA', 'Antarctica', 'Antarctica', 'Antarctica', 'AQ');
|
||||
INSERT INTO user_extended_country VALUES('BVT', 'Bouvet Island', 'Antarctica', 'Antarctica', 'BV');
|
||||
INSERT INTO user_extended_country VALUES('IOT', 'British Indian Ocean Territory', 'Africa', 'Eastern Africa', 'IO');
|
||||
INSERT INTO user_extended_country VALUES('SGS', 'South Georgia and the South Sandwich Islands', 'Antarctica', 'Antarctica', 'GS');
|
||||
INSERT INTO user_extended_country VALUES('HMD', 'Heard Island and McDonald Islands', 'Antarctica', 'Antarctica', 'HM');
|
||||
INSERT INTO user_extended_country VALUES('ATF', 'French Southern territories', 'Antarctica', 'Antarctica', 'TF');
|
||||
INSERT INTO user_extended_country VALUES('UMI', 'United States Minor Outlying Islands', 'Oceania', 'Micronesia/Caribbean', 'UM');
|
Reference in New Issue
Block a user