modified outputrecord table sql script
Showing
1 changed file
with
3 additions
and
4 deletions
| ... | @@ -3,7 +3,7 @@ | ... | @@ -3,7 +3,7 @@ |
| 3 | -- http://www.phpmyadmin.net | 3 | -- http://www.phpmyadmin.net |
| 4 | -- | 4 | -- |
| 5 | -- Host: localhost | 5 | -- Host: localhost |
| 6 | -- Generation Time: Jan 15, 2019 at 12:14 PM | 6 | -- Generation Time: Jan 15, 2019 at 12:35 PM |
| 7 | -- Server version: 10.0.28-MariaDB | 7 | -- Server version: 10.0.28-MariaDB |
| 8 | -- PHP Version: 5.6.29 | 8 | -- PHP Version: 5.6.29 |
| 9 | 9 | ||
| ... | @@ -26,10 +26,9 @@ SET time_zone = "+00:00"; | ... | @@ -26,10 +26,9 @@ SET time_zone = "+00:00"; |
| 26 | -- Table structure for table `output_report` | 26 | -- Table structure for table `output_report` |
| 27 | -- | 27 | -- |
| 28 | 28 | ||
| 29 | DROP TABLE IF EXISTS `output_report`; | ||
| 30 | CREATE TABLE `output_report` ( | 29 | CREATE TABLE `output_report` ( |
| 31 | `id` bigint(20) NOT NULL, | 30 | `id` bigint(20) NOT NULL, |
| 32 | `user_id` varchar(20) NOT NULL, | 31 | `user_id` int(11) NOT NULL, |
| 33 | `user_name` varchar(200) NOT NULL, | 32 | `user_name` varchar(200) NOT NULL, |
| 34 | `date` date NOT NULL, | 33 | `date` date NOT NULL, |
| 35 | `call_attempts` int(11) NOT NULL, | 34 | `call_attempts` int(11) NOT NULL, |
| ... | @@ -37,7 +36,7 @@ CREATE TABLE `output_report` ( | ... | @@ -37,7 +36,7 @@ CREATE TABLE `output_report` ( |
| 37 | `call_unique_contacts` int(11) NOT NULL, | 36 | `call_unique_contacts` int(11) NOT NULL, |
| 38 | `income` int(11) NOT NULL, | 37 | `income` int(11) NOT NULL, |
| 39 | `product_id` bigint(11) NOT NULL, | 38 | `product_id` bigint(11) NOT NULL, |
| 40 | `product_name` text NOT NULL, | 39 | `product_name` varchar(50) NOT NULL, |
| 41 | `lead_generated` int(11) NOT NULL, | 40 | `lead_generated` int(11) NOT NULL, |
| 42 | `lead_generated_amount` decimal(13,2) NOT NULL, | 41 | `lead_generated_amount` decimal(13,2) NOT NULL, |
| 43 | `lead_closed` int(11) NOT NULL, | 42 | `lead_closed` int(11) NOT NULL, | ... | ... |
-
Please register or sign in to post a comment