Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- phpMyAdmin SQL Dump
- -- version 4.1.12
- -- http://www.phpmyadmin.net
- --
- -- Host: 127.0.0.1
- -- Generation Time:
- -- Версия на сървъра: 5.6.16
- -- PHP Version: 5.5.11
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- SET time_zone = "+00:00";
- /*!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: `messages`
- --
- -- --------------------------------------------------------
- --
- -- Структура на таблица `messages`
- --
- CREATE TABLE IF NOT EXISTS `messages` (
- `username` varchar(50) NOT NULL,
- `date` date NOT NULL,
- `groups` varchar(50) NOT NULL,
- `header` varchar(100) NOT NULL,
- `message` text NOT NULL,
- `message_id` int(11) NOT NULL AUTO_INCREMENT,
- PRIMARY KEY (`message_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
- --
- -- Схема на данните от таблица `messages`
- --
- INSERT INTO `messages` (`username`, `date`, `groups`, `header`, `message`, `message_id`) VALUES
- ('admin', '2014-10-01', 'Others', 'Examen date', 'Ne date of the exam', 4),
- ('user', '2014-10-01', 'MySQL', 'Conection String', 'Conections Strings in databases', 3);
- -- --------------------------------------------------------
- --
- -- Структура на таблица `users`
- --
- CREATE TABLE IF NOT EXISTS `users` (
- `username` varchar(50) NOT NULL,
- `password` varchar(50) NOT NULL,
- PRIMARY KEY (`username`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
- --
- -- Схема на данните от таблица `users`
- --
- INSERT INTO `users` (`username`, `password`) VALUES
- ('user', 'qwert'),
- ('user1', '123'),
- ('user2', '12345'),
- ('admin', '12345');
- /*!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 */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement