-- MySQL dump 10.9
--
-- Host: localhost Database: omepouk_site
-- ------------------------------------------------------
-- Server version 4.1.22-standard-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `active_guests`
--
DROP TABLE IF EXISTS `active_guests`;
CREATE TABLE `active_guests` (
`ip` varchar(15) NOT NULL default '',
`timestamp` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `active_guests`
--
LOCK TABLES `active_guests` WRITE;
/*!40000 ALTER TABLE `active_guests` DISABLE KEYS */;
INSERT INTO `active_guests` (`ip`, `timestamp`) VALUES ('72.30.79.51',1229929040);
/*!40000 ALTER TABLE `active_guests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `active_users`
--
DROP TABLE IF EXISTS `active_users`;
CREATE TABLE `active_users` (
`username` varchar(30) NOT NULL default '',
`timestamp` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `active_users`
--
LOCK TABLES `active_users` WRITE;
/*!40000 ALTER TABLE `active_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `active_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `banned_users`
--
DROP TABLE IF EXISTS `banned_users`;
CREATE TABLE `banned_users` (
`username` varchar(30) NOT NULL default '',
`timestamp` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `banned_users`
--
LOCK TABLES `banned_users` WRITE;
/*!40000 ALTER TABLE `banned_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `banned_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `events`
--
DROP TABLE IF EXISTS `events`;
CREATE TABLE `events` (
`eid` int(5) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`details` text NOT NULL,
`col` int(1) NOT NULL default '1',
`added` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`eid`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `events`
--
LOCK TABLES `events` WRITE;
/*!40000 ALTER TABLE `events` DISABLE KEYS */;
INSERT INTO `events` (`eid`, `title`, `details`, `col`, `added`) VALUES (8,'OMEP European Regional Meeting','April 28th - 30th 2009, Greece
\r\nMore details on their web site shortly
\r\nwww.omep.gr/index_en.htm
\r\n',1,'2008-09-14 19:21:22'),(9,'OMEP WORLD ASSEMBLY AND INTERNATIONAL CONFERENCE','Theme: Learning to listen, listening to learn
\r\nAugust 5th – 7th, 2009, Lagos, Nigeria
\r\n
\r\nConference website',1,'2008-09-14 19:22:50'),(6,'OMEP(UK) Annual General Meeting','November 22nd 2008
\r\nDetails nearer the time
\r\n',1,'2008-09-14 19:20:20'),(7,'North West Conference – Manchester','March 21st 2009
\r\n
\r\nCHILDHOOD: a precious time?
\r\nSpeakers: Sue Egersdorff, Peter Dixon and Dr Christine Macintyre
\r\n',1,'2008-09-14 19:21:00'),(10,'Target date for release of the new DVD','March 1st 2009
\r\n
\r\nThe disc, which still has work to complete, but which was previewed at the 2008 AGM, should be ready for sale by this date. Please look for details.',1,'2008-11-24 17:42:36');
/*!40000 ALTER TABLE `events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `files2subjects`
--
DROP TABLE IF EXISTS `files2subjects`;
CREATE TABLE `files2subjects` (
`fid` int(5) NOT NULL auto_increment,
`filename` varchar(255) NOT NULL default '',
`eid` int(5) NOT NULL default '0',
`nid` int(5) NOT NULL default '0',
`description` varchar(255) NOT NULL default '',
PRIMARY KEY (`fid`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 PACK_KEYS=0;
--
-- Dumping data for table `files2subjects`
--
LOCK TABLES `files2subjects` WRITE;
/*!40000 ALTER TABLE `files2subjects` DISABLE KEYS */;
/*!40000 ALTER TABLE `files2subjects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `news`
--
DROP TABLE IF EXISTS `news`;
CREATE TABLE `news` (
`nid` int(5) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`details` text NOT NULL,
`col` int(1) NOT NULL default '1',
`added` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`nid`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 PACK_KEYS=0;
--
-- Dumping data for table `news`
--
LOCK TABLES `news` WRITE;
/*!40000 ALTER TABLE `news` DISABLE KEYS */;
INSERT INTO `news` (`nid`, `title`, `details`, `col`, `added`) VALUES (6,'Launch of new website on Sustainable Development in the Early Years','The aim of this new web site is to provide resources to support an International OMEP initiative to promote research and practical innovations in Sustainable Development for the Early Years.
\r\n
\r\nTo view the site and its associated Blog please click here
\r\n
\r\n
\r\n
\r\n',1,'2008-09-14 19:32:15');
/*!40000 ALTER TABLE `news` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`username` varchar(30) NOT NULL default '',
`password` varchar(32) default NULL,
`userid` varchar(32) default NULL,
`userlevel` tinyint(1) unsigned NOT NULL default '0',
`email` varchar(50) default NULL,
`timestamp` int(11) unsigned NOT NULL default '0',
`file` varchar(255) NOT NULL default '',
`name` varchar(255) NOT NULL default '',
`tel` varchar(20) NOT NULL default '',
PRIMARY KEY (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`username`, `password`, `userid`, `userlevel`, `email`, `timestamp`, `file`, `name`, `tel`) VALUES ('melon','3a2cf27458c9aa3e358f8fc0f002bff6','4b241628839addbca8f9d984820c86aa',9,'melon@melon.com',1209396092,'','',''),('omep1','03a0357204486740076d5777a8493ff8','a08b76b1e74a5577d423f0cf69f55fc3',9,'omep1@omep.co.uk',1227548559,'','',''),('omep2','06dc3d942f15d8411e89e4e51467d5ee','cebd8f13776e730e3bb28b7e2944b59f',9,'omep2@omep.co.uk',1206098414,'','',''),('cynmelon','e93ad402354d2533dbbb179c3b78d324','e0e94b49884839859e12b5b811449656',9,'cyn@meloncreative.co.uk',1209396449,'','','');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;