0da9967f by G Manojkumar

db

1 parent e837975b
1 -- phpMyAdmin SQL Dump
2 -- version 4.5.3.1
3 -- http://www.phpmyadmin.net
4 --
5 -- Host: localhost
6 -- Generation Time: Jan 14, 2019 at 07:14 AM
7 -- Server version: 10.0.28-MariaDB
8 -- PHP Version: 5.6.29
9
10 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11 SET time_zone = "+00:00";
12
13
14 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17 /*!40101 SET NAMES utf8mb4 */;
18
19 --
20 -- Database: `kstych_flexydial`
21 --
22
23 -- --------------------------------------------------------
24
25 --
26 -- Table structure for table `daily_output_report`
27 --
28
29 CREATE TABLE `daily_output_report` (
30 `id` bigint(20) NOT NULL,
31 `user_id` varchar(20) NOT NULL,
32 `date` date NOT NULL,
33 `attempts` int(10) NOT NULL,
34 `contacts` int(10) NOT NULL,
35 `unique_contacts` int(10) NOT NULL,
36 `income` varchar(30) NOT NULL,
37 `product_id` varchar(10) NOT NULL,
38 `product_name` varchar(30) NOT NULL,
39 `lead_generated` int(10) NOT NULL,
40 `lead_amount` decimal(15,2) NOT NULL,
41 `lead_closed` int(10) NOT NULL,
42 `lead_closed_amount` decimal(15,2) NOT NULL,
43 `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
44 `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
45 ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
46
47 --
48 -- Indexes for dumped tables
49 --
50
51 --
52 -- Indexes for table `daily_output_report`
53 --
54 ALTER TABLE `daily_output_report`
55 ADD PRIMARY KEY (`id`);
56
57 --
58 -- AUTO_INCREMENT for dumped tables
59 --
60
61 --
62 -- AUTO_INCREMENT for table `daily_output_report`
63 --
64 ALTER TABLE `daily_output_report`
65 MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;
66 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
67 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
68 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!