-- phpMyAdmin SQL Dump -- version 3.2.2 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: May 15, 2010 at 05:56 PM -- Server version: 5.0.89 -- PHP Version: 5.2.9 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!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 */; -- -- Database: `m2msearch` -- -- -------------------------------------------------------- -- -- Table structure for table `articles` -- CREATE TABLE IF NOT EXISTS `articles` ( `id` int(13) NOT NULL auto_increment, `title` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ; -- -- Dumping data for table `articles` -- INSERT INTO `articles` (`id`, `title`) VALUES (1, 'Article 1'), (2, 'Article 2'), (3, 'Article 3'), (4, 'Article 4'), (5, 'Article 5'), (6, 'Article 6'), (7, 'Article 7'), (8, 'Article 8'), (9, 'Article 9'); -- -------------------------------------------------------- -- -- Table structure for table `articles2publications` -- CREATE TABLE IF NOT EXISTS `articles2publications` ( `id` int(11) NOT NULL auto_increment, `idarticles` int(11) NOT NULL, `idpublications` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ; -- -- Dumping data for table `articles2publications` -- INSERT INTO `articles2publications` (`id`, `idarticles`, `idpublications`) VALUES (1, 1, 1), (2, 1, 2), (3, 2, 1), (4, 2, 3), (5, 2, 2), (6, 3, 1), (7, 4, 3), (8, 4, 2), (9, 5, 2), (10, 6, 2), (11, 6, 1), (12, 7, 1), (13, 7, 2), (14, 7, 3), (15, 8, 1), (16, 8, 2), (17, 9, 2); -- -------------------------------------------------------- -- -- Table structure for table `publications` -- CREATE TABLE IF NOT EXISTS `publications` ( `id` int(11) NOT NULL auto_increment, `publication` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Dumping data for table `publications` -- INSERT INTO `publications` (`id`, `publication`) VALUES (1, 'Publication 1'), (2, 'Publication 2'), (3, 'Publication 3');