Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flexydial
/
hdfc-beu-v2
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
0da9967f
authored
2019-01-14 12:50:34 +0530
by
G Manojkumar
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
db
1 parent
e837975b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
0 deletions
custom/db/daily_output_report.sql
custom/db/daily_output_report.sql
0 → 100644
View file @
0da9967
-- phpMyAdmin SQL Dump
-- version 4.5.3.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 14, 2019 at 07:14 AM
-- Server version: 10.0.28-MariaDB
-- PHP Version: 5.6.29
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: `kstych_flexydial`
--
-- --------------------------------------------------------
--
-- Table structure for table `daily_output_report`
--
CREATE
TABLE
`daily_output_report`
(
`id`
bigint
(
20
)
NOT
NULL
,
`user_id`
varchar
(
20
)
NOT
NULL
,
`date`
date
NOT
NULL
,
`attempts`
int
(
10
)
NOT
NULL
,
`contacts`
int
(
10
)
NOT
NULL
,
`unique_contacts`
int
(
10
)
NOT
NULL
,
`income`
varchar
(
30
)
NOT
NULL
,
`product_id`
varchar
(
10
)
NOT
NULL
,
`product_name`
varchar
(
30
)
NOT
NULL
,
`lead_generated`
int
(
10
)
NOT
NULL
,
`lead_amount`
decimal
(
15
,
2
)
NOT
NULL
,
`lead_closed`
int
(
10
)
NOT
NULL
,
`lead_closed_amount`
decimal
(
15
,
2
)
NOT
NULL
,
`created_at`
timestamp
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
,
`updated_at`
timestamp
NOT
NULL
DEFAULT
CURRENT_TIMESTAMP
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `daily_output_report`
--
ALTER
TABLE
`daily_output_report`
ADD
PRIMARY
KEY
(
`id`
);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `daily_output_report`
--
ALTER
TABLE
`daily_output_report`
MODIFY
`id`
bigint
(
20
)
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 */
;
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment