Created
August 17, 2016 07:39
-
-
Save iqbalmalik89/b21bd8481f74623d9d6e9cf8565c480f to your computer and use it in GitHub Desktop.
This file contains hidden or 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.5.3.1 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: localhost | |
-- Generation Time: Aug 17, 2016 at 03:39 AM | |
-- Server version: 5.7.10 | |
-- PHP Version: 7.0.2 | |
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: `sababoo` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `languages` | |
-- | |
CREATE TABLE `languages` ( | |
`id` int(11) NOT NULL, | |
`user_id` int(11) NOT NULL, | |
`language` varchar(200) NOT NULL, | |
`proficiency` enum('elementary','limited_working','professional_working','full_professional','native_or_bilingual') NOT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
-- | |
-- Dumping data for table `languages` | |
-- | |
INSERT INTO `languages` (`id`, `user_id`, `language`, `proficiency`) VALUES | |
(3, 2, 'Englisha', 'professional_working'), | |
(4, 2, 'ok', 'limited_working'); | |
-- | |
-- Indexes for dumped tables | |
-- | |
-- | |
-- Indexes for table `languages` | |
-- | |
ALTER TABLE `languages` | |
ADD PRIMARY KEY (`id`); | |
-- | |
-- AUTO_INCREMENT for dumped tables | |
-- | |
-- | |
-- AUTO_INCREMENT for table `languages` | |
-- | |
ALTER TABLE `languages` | |
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; | |
/*!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