Skip to content

Instantly share code, notes, and snippets.

@anchetaWern
Created July 5, 2016 22:58
Show Gist options
  • Save anchetaWern/9c716a209d2d44b1d15ece47978e4cf8 to your computer and use it in GitHub Desktop.
Save anchetaWern/9c716a209d2d44b1d15ece47978e4cf8 to your computer and use it in GitHub Desktop.
faces SQL
-- phpMyAdmin SQL Dump
-- version 4.5.4.1deb2ubuntu2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 06, 2016 at 06:57 AM
-- Server version: 5.7.12-0ubuntu1.1
-- PHP Version: 5.6.23-2+deb.sury.org~xenial+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: `similarfaces`
--
-- --------------------------------------------------------
--
-- Table structure for table `faces`
--
CREATE TABLE `faces` (
`id` int(11) NOT NULL,
`face_id` varchar(90) NOT NULL,
`name` varchar(60) NOT NULL,
`photo` varchar(300) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `faces`
--
ALTER TABLE `faces`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `faces`
--
ALTER TABLE `faces`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
/*!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