-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2352879_user.sql
76 lines (63 loc) · 2.28 KB
/
2352879_user.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Host: fdb16.awardspace.net
-- Generation Time: May 07, 2017 at 01:34 PM
-- Server version: 5.7.18-log
-- PHP Version: 5.5.38
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 utf8mb4 */;
--
-- Database: `2352879_user`
--
-- --------------------------------------------------------
--
-- Table structure for table `sites`
--
CREATE TABLE `sites` (
`id` int(11) NOT NULL,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`designation` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`salary` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`tel` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
`rating` tinyint(2) NOT NULL DEFAULT '10',
`total_rating` int(11) NOT NULL DEFAULT '10',
`users` int(11) NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `sites`
--
INSERT INTO `sites` (`id`, `name`, `designation`, `salary`, `type`, `tel`, `rating`, `total_rating`, `users`) VALUES
(24, 'kaliteros', '', '', 'food', '2321012345', 10, 10, 1),
(23, 'Family', '', '', 'food', '', 10, 10, 1),
(15, 'Parisniko', '', '', 'food', '', 10, 10, 1),
(25, 'Mammas', '', '', 'food', '', 10, 10, 1),
(27, 'Elpida', 'Merarxias 66-68, Serres 62125', '', 'hotels', '', 10, 10, 1),
(28, 'Galaxias', 'P. Tsaldari, Serres 62123', '', 'hotels', '', 10, 10, 1),
(29, 'Elena', 'Tsalopoulou, Serres 62121', '', 'hotels', '', 10, 10, 1),
(30, 'Metropolis', 'Dionysiou Solomou 49, Serres 62122', '', 'hotels', '', 10, 10, 1);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `sites`
--
ALTER TABLE `sites`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `sites`
--
ALTER TABLE `sites`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
/*!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 */;