Created
May 20, 2019 16:58
-
-
Save prof3ssorSt3v3/b7774ad2b3d53ddb07eece80863d560c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 4.8.5 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Host: localhost:8889 | |
-- Generation Time: May 20, 2019 at 04:58 PM | |
-- Server version: 5.7.25 | |
-- PHP Version: 7.3.1 | |
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: `movies` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `people` | |
-- | |
DROP TABLE IF EXISTS `people`; | |
CREATE TABLE `people` ( | |
`email` varchar(100) NOT NULL, | |
`first_name` varchar(30) NOT NULL, | |
`last_name` varchar(30) NOT NULL, | |
`common_name` varchar(40) NOT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
-- | |
-- Dumping data for table `people` | |
-- | |
INSERT INTO `people` (`email`, `first_name`, `last_name`, `common_name`) VALUES | |
('[email protected]', 'Arya', 'Stark', ''), | |
('[email protected]', 'Brandon', 'Stark', ''), | |
('[email protected]', 'Bronn', 'Blackwater', ''), | |
('[email protected]', 'Cersei', 'Lannister', ''), | |
('[email protected]', 'Daenerys', 'Targaryen', ''), | |
('[email protected]', 'Gregor', 'Clegane', ''), | |
('[email protected]', 'Jaime', 'Lannister', ''), | |
('[email protected]', 'Jon', 'Snow', ''), | |
('[email protected]', 'Samwell', 'Tarley', ''), | |
('[email protected]', 'Sandor', 'Clegane', ''), | |
('[email protected]', 'Sansa', 'Stark-Bolton', ''); | |
-- | |
-- Indexes for dumped tables | |
-- | |
-- | |
-- Indexes for table `people` | |
-- | |
ALTER TABLE `people` | |
ADD PRIMARY KEY (`email`); | |
/*!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 */; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment