PHP Classes

File: database/locations.sql

Recommend this page to a friend!
  Classes of ganesh kavhar   PHP Event Planner   database/locations.sql   Download  
File: database/locations.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Event Planner
Application to help users to organize events
Author: By
Last change:
Date: 1 year ago
Size: 1,781 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 4.6.5.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 27, 2017 at 06:48 PM -- Server version: 10.1.21-MariaDB -- PHP Version: 5.6.30 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: `year2project` -- -- -------------------------------------------------------- -- -- Table structure for table `locations` -- CREATE TABLE `locations` ( `LocationID` int(11) NOT NULL, `Name` varchar(255) NOT NULL, `Address` varchar(255) NOT NULL, `ManagerFName` varchar(255) NOT NULL, `ManagerLName` varchar(255) NOT NULL, `ManagerEmail` varchar(255) NOT NULL, `ManagerNumber` int(11) NOT NULL, `MaxCapacity` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `locations` -- INSERT INTO `locations` (`LocationID`, `Name`, `Address`, `ManagerFName`, `ManagerLName`, `ManagerEmail`, `ManagerNumber`, `MaxCapacity`) VALUES (1, 'Royal Hotel', 'Bray', 'John', 'Byrne', 'John@email.com', 123456, 100); -- -- Indexes for dumped tables -- -- -- Indexes for table `locations` -- ALTER TABLE `locations` ADD PRIMARY KEY (`LocationID`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `locations` -- ALTER TABLE `locations` MODIFY `LocationID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; /*!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 */;