-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_store.sql
More file actions
33 lines (28 loc) · 782 Bytes
/
data_store.sql
File metadata and controls
33 lines (28 loc) · 782 Bytes
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
-- phpMyAdmin SQL Dump
-- version 4.4.10
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Generation Time: Nov 29, 2017 at 11:57 PM
-- Server version: 5.5.42
-- PHP Version: 7.0.0
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `simpplo`
--
CREATE DATABASE IF NOT EXISTS `simpplo` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
USE `simpplo`;
-- --------------------------------------------------------
--
-- Table structure for table `ads`
--
CREATE TABLE `ads` (
`name` varchar(100) NOT NULL,
`price` varchar(100) NOT NULL,
`image` mediumtext NOT NULL,
`year` varchar(100) NOT NULL,
`type` varchar(100) NOT NULL,
`color` varchar(100) NOT NULL,
`doors` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;