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
ece1e0e8
authored
2019-02-26 16:59:23 +0530
by
prami
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
sql script for disposition list
1 parent
6ba8d1d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
145 additions
and
0 deletions
custom/db/disposition.sql
custom/db/sub_disposition.sql
custom/db/disposition.sql
0 → 100644
View file @
ece1e0e
-- phpMyAdmin SQL Dump
-- version 4.5.3.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 20, 2019 at 10:52 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: `flexydial_hdfc_beu`
--
-- --------------------------------------------------------
--
-- Table structure for table `disposition`
--
CREATE
TABLE
`disposition`
(
`id`
int
(
11
)
NOT
NULL
,
`plan`
varchar
(
100
)
NOT
NULL
,
`code`
varchar
(
2
)
NOT
NULL
,
`name`
varchar
(
100
)
NOT
NULL
,
`status`
enum
(
'active'
,
'inactive'
)
NOT
NULL
DEFAULT
'active'
,
`created_at`
datetime
NOT
NULL
,
`updated_at`
datetime
NOT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
--
-- Dumping data for table `disposition`
--
INSERT
INTO
`disposition`
(
`id`
,
`plan`
,
`code`
,
`name`
,
`status`
,
`created_at`
,
`updated_at`
)
VALUES
(
1
,
'Not Contacted'
,
'NC'
,
'Not Contacted'
,
'active'
,
'2019-02-20 10:50:56'
,
'2019-02-20 10:50:56'
),
(
2
,
'Contacted'
,
'CC'
,
'Contacted'
,
'active'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
3
,
'Login'
,
'LN'
,
'Login'
,
'active'
,
'2019-02-20 10:52:35'
,
'2019-02-20 10:52:35'
);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `disposition`
--
ALTER
TABLE
`disposition`
ADD
PRIMARY
KEY
(
`id`
);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `disposition`
--
ALTER
TABLE
`disposition`
MODIFY
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
AUTO_INCREMENT
=
4
;
/*!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 */
;
custom/db/sub_disposition.sql
0 → 100644
View file @
ece1e0e
-- phpMyAdmin SQL Dump
-- version 4.5.3.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 20, 2019 at 10:53 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: `flexydial_hdfc_beu`
--
-- --------------------------------------------------------
--
-- Table structure for table `sub_disposition`
--
CREATE
TABLE
`sub_disposition`
(
`id`
int
(
11
)
NOT
NULL
,
`dispo_id`
int
(
11
)
NOT
NULL
,
`name`
varchar
(
100
)
NOT
NULL
,
`created_at`
datetime
NOT
NULL
,
`updated_at`
datetime
NOT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
--
-- Dumping data for table `sub_disposition`
--
INSERT
INTO
`sub_disposition`
(
`id`
,
`dispo_id`
,
`name`
,
`created_at`
,
`updated_at`
)
VALUES
(
1
,
1
,
'Wrong No/ Out of Service'
,
'2019-02-20 10:50:56'
,
'2019-02-20 10:50:56'
),
(
2
,
1
,
'Ringing No Response'
,
'2019-02-20 10:50:56'
,
'2019-02-20 10:50:56'
),
(
3
,
1
,
'Not Reachable'
,
'2019-02-20 10:50:56'
,
'2019-02-20 10:50:56'
),
(
4
,
2
,
'Appointment Fixed'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
5
,
2
,
'Follow Up'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
6
,
2
,
'Not Interested'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
7
,
2
,
'NI-DND'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
8
,
2
,
'Not Eligible'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
9
,
2
,
'Duplicate Lead'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
10
,
2
,
'NCPR Customer'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
11
,
2
,
'DNC Customer'
,
'2019-02-20 10:52:17'
,
'2019-02-20 10:52:17'
),
(
12
,
3
,
'LOS Number'
,
'2019-02-20 10:52:35'
,
'2019-02-20 10:52:35'
);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `sub_disposition`
--
ALTER
TABLE
`sub_disposition`
ADD
PRIMARY
KEY
(
`id`
);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `sub_disposition`
--
ALTER
TABLE
`sub_disposition`
MODIFY
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
AUTO_INCREMENT
=
13
;
/*!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