· 9 years ago · Sep 30, 2016, 04:10 AM
1-- phpMyAdmin SQL Dump
2-- version 4.4.7
3-- http://www.phpmyadmin.net
4--
5-- Host: localhost
6-- Generation Time: Sep 30, 2016 at 12:08 PM
7-- Server version: 5.5.47-MariaDB
8-- PHP Version: 5.4.16
9
10SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11SET time_zone = "+00:00";
12
13--
14-- Database: `zoho`
15--
16
17-- --------------------------------------------------------
18
19--
20-- Table structure for table `clients`
21--
22
23CREATE TABLE IF NOT EXISTS `clients` (
24 `id` int(10) NOT NULL,
25 `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
26 `mobile` varchar(50) NOT NULL,
27 `firstname` varchar(20) NOT NULL,
28 `lastname` varchar(20) NOT NULL,
29 `is_new` int(1) NOT NULL DEFAULT '1',
30 `called` int(1) NOT NULL DEFAULT '0'
31) ENGINE=InnoDB DEFAULT CHARSET=latin1;
32
33--
34-- Indexes for dumped tables
35--
36
37--
38-- Indexes for table `clients`
39--
40ALTER TABLE `clients`
41 ADD PRIMARY KEY (`id`);
42
43--
44-- AUTO_INCREMENT for dumped tables
45--
46
47--
48-- AUTO_INCREMENT for table `clients`
49--
50ALTER TABLE `clients`
51 MODIFY `id` int(10) NOT NULL AUTO_INCREMENT;