
# phpMyAdmin MySQL-Dump
# http://phpwizard.net/phpMyAdmin/
#
# SMS_script FROM http://Spy-Design.net
#       Spy-Design.net
#

# --------------------------------------------------------
#
# Table structure for table 'bad_words'
#

CREATE TABLE bad_words (
   id int(8) NOT NULL auto_increment,
   word text NOT NULL,
   good text NOT NULL,
   PRIMARY KEY (id)
);



# --------------------------------------------------------
#
# Table structure for table 'config'
#

CREATE TABLE config (
   id tinyint(1) DEFAULT '1' NOT NULL,
   show_limit tinyint(2) DEFAULT '20' NOT NULL,
   char_limit mediumint(3) DEFAULT '70' NOT NULL,
   logo varchar(50),
   speed tinyint(2) DEFAULT '3' NOT NULL,
   shut_down varchar(5),
   reson text,
   mem_only varchar(5) NOT NULL,
   Master_color varchar(7),
   A_color varchar(7),
   B_color varchar(7),
   PRIMARY KEY (id)
);

#
# Dumping data for table 'config'
#

INSERT INTO config VALUES ( '1', '10', '70', 'logo.gif', '3', '', '    ...     .', 'no', '#98FB98', '#FF7C4A', 'Aqua');


# --------------------------------------------------------
#
# Table structure for table 'icons'
#

CREATE TABLE icons (
   sn int(8) NOT NULL auto_increment,
   shortcut varchar(255) NOT NULL,
   icon varchar(255) NOT NULL,
   PRIMARY KEY (sn)
);


#
# Dumping data for table 'icons'
#

INSERT INTO icons VALUES ( '1', '@_@', 'icon_eek.gif');
INSERT INTO icons VALUES ( '2', '*_*', 'icon_wink.gif');
INSERT INTO icons VALUES ( '3', ':(', 'icon_frown.gif');
INSERT INTO icons VALUES ( '4', ':)', 'icon_mrgreen.gif');
INSERT INTO icons VALUES ( '5', 'c_c', 'icon_cool.gif');


# --------------------------------------------------------
#
# Table structure for table 'members'
#

CREATE TABLE members (
   LoginName varchar(25) NOT NULL,
   Password varchar(10) NOT NULL,
   Level varchar(10) NOT NULL,
   PRIMARY KEY (LoginName)
);



# --------------------------------------------------------
#
# Table structure for table 'messages'
#

CREATE TABLE messages (
   id int(8) NOT NULL auto_increment,
   name varchar(25) NOT NULL,
   message text NOT NULL,
   Level varchar(15) DEFAULT 'C' NOT NULL,
   ip varchar(15) NOT NULL,
   PRIMARY KEY (id)
);


# --------------------------------------------------------
#
# Table structure for table 'dn'
#

CREATE TABLE dn (
   DN_ip varchar(15) NOT NULL,
   DN_reson text
);




