# ========================================================================== #
#           IRSIM - Invisionix Roaming System Instant Messenger              #
# ========================================================================== #
#                                                                            #
#  Copyright (c) 2004 by Invisionix Systems                                  #
#     http://www.invisionix.org                                              #
#                                                                            #
#  This file is part of the IRSIM.                                           #
#  IRSIM is free software; you can redistribute it and/or modify it          #
#     under the terms of the GNU Lesser General Public License as            #
#     published by the Free Software Foundation; Latest version.             #
# IRSIM is distributed in the hope that it will be useful,                   #
#     but WITHOUT ANY WARRANTY; without even the implied                     #
#    warranty of MERCHANTABILITY or FITNESS FOR A                            #
#    PARTICULAR PURPOSE. See the GNU Lesser General Public                   #
#    License for more details.                                               #
#  You should have received a copy of the GNU Lesser General Public          #
#     License along with IRSIM (see license.txt); if not, write to the Free  #
#     Software Foundation Inc,59 Temple Place,Suite 330,Boston,MA 02111,USA  #
#     Copy of full license is in file "license.txt, and on the net at:       #
#            http://www.opensource.org/licenses/lgpl-license.php             #
# ========================================================================== #
#                                                                            #

# phpMyAdmin SQL Dump
# version 2.5.4
# http://www.phpmyadmin.net
#

#
# Table structure for table `chat_data`
#

CREATE TABLE `chat_data` (
  `id` int(11) NOT NULL auto_increment,
  `sender` varchar(255) NOT NULL default '',
  `buddy` varchar(255) NOT NULL default '',
  `message` varchar(255) NOT NULL default '',
  `msgType` varchar(32) NOT NULL default '',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

#
# Table structure for table `chat_users`
# ( all passwords below, are: IRSIMguest )
#

CREATE TABLE `chat_users` (
  `nickname` varchar(255) NOT NULL default '',
  `username` varchar(255) NOT NULL default '',
  `password` varchar(255) NOT NULL default '',
  `onlineReporter` varchar(255) NOT NULL default '',
  `status` varchar(32) default NULL,
  UNIQUE KEY `username` (`username`)
) TYPE=MyISAM;
INSERT INTO `chat_users` (`nickname`, `username`, `password`, `onlineReporter`, `status`) VALUES ('', 'IRSIMguest', '{SSHA}SCTehZrjMYwF/kSrdnZfA20o+CcAbNAP', '', 'offline');
INSERT INTO `chat_users` (`nickname`, `username`, `password`, `onlineReporter`, `status`) VALUES ('IRSIMguest@jabber', 'IRSIMguest@jabber.zim.net.au/Exodus', '{SSHA}SCTehZrjMYwF/kSrdnZfA20o+CcAbNAP', '', 'offline');
INSERT INTO `chat_users` (`nickname`, `username`, `password`, `onlineReporter`, `status`) VALUES ('guestExmp@yahoo', 'someName@yahoo.transactim.net', '{SSHA}SCTehZrjMYwF/kSrdnZfA20o+CcAbNAP', '', 'offline');
INSERT INTO `chat_users` (`nickname`, `username`, `password`, `onlineReporter`, `status`) VALUES ('ExampleK@bigfoot', 'someName%bigfoot.com@msn.jabber.zim.net.au', '{SSHA}SCTehZrjMYwF/kSrdnZfA20o+CcAbNAP', '', 'offline');
INSERT INTO `chat_users` (`nickname`, `username`, `password`, `onlineReporter`, `status`) VALUES ('ExampleM@msn', 'exampleM%hotmail.com@msn.jabber.zim.net.au', '{SSHA}SCTehZrjMYwF/kSrdnZfA20o+CcAbNAP', '', 'offline');
INSERT INTO `chat_users` (`nickname`, `username`, `password`, `onlineReporter`, `status`) VALUES ('ExampleY@icq', '99713801@icq.jabber.zim.net.au', '{SSHA}SCTehZrjMYwF/kSrdnZfA20o+CcAbNAP', '', 'offline');
INSERT INTO `chat_users` (`nickname`, `username`, `password`, `onlineReporter`, `status`) VALUES ('ExampleZ@aim', '408002180@aim.jabber.zim.net.au', '{SSHA}SCTehZrjMYwF/kSrdnZfA20o+CcAbNAP', '', 'offline');
INSERT INTO `chat_users` (`nickname`, `username`, `password`, `onlineReporter`, `status`) VALUES ('ExampleZb@aim', 'screenName%aol.com@aim.jabber.zim.net.au', '{SSHA}SCTehZrjMYwF/kSrdnZfA20o+CcAbNAP', '', 'offline');
