-- MySQL dump 9.11
--
-- Host: localhost    Database: i99i_chat
-- ------------------------------------------------------
-- Server version	4.0.22-standard-log

--
-- Table structure for table `chat`
--

DROP TABLE IF EXISTS chat;
CREATE TABLE chat (
  id int(11) NOT NULL auto_increment,
  chat_name text NOT NULL,
  site_url text NOT NULL,
  site_id text NOT NULL,
  host text NOT NULL,
  active enum('0','1') NOT NULL default '0',
  email text NOT NULL,
  mark text NOT NULL,
  username varchar(100) default NULL,
  password varchar(100) default NULL,
  hit int(11) NOT NULL default '0',
  chmom tinyint(1) default '0',
  sv int(11) NOT NULL default '0',
  PRIMARY KEY  (id)
) TYPE=MyISAM;

--
-- Dumping data for table `chat`
--

INSERT INTO chat (id, chat_name, site_url, site_id, host, active, email, mark, username, password, hit, chmom, sv) VALUES (1,'','http://www.3zazi.com','1015','81.23.251.40','1','webmaster@3zazi.com','i9','azazi','911911',9,0,9);
INSERT INTO chat (id, chat_name, site_url, site_id, host, active, email, mark, username, password, hit, chmom, sv) VALUES (2,' ','http://www.7bebticom','1015','81.23.251.40','1','webmaster@7bebti.com','i9','7bebti','911911',2,0,2);
INSERT INTO chat (id, chat_name, site_url, site_id, host, active, email, mark, username, password, hit, chmom, sv) VALUES (3,' ','http://www.n9com.com','1034','host1.digichet.com','1','info@n9com.com','i9','n9com','i99i',0,0,0);
