-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew.sql
242 lines (202 loc) · 6.6 KB
/
new.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 01, 2019 at 08:22 AM
-- Server version: 10.1.35-MariaDB
-- PHP Version: 7.2.9
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
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: `new`
--
-- --------------------------------------------------------
--
-- Table structure for table `invoice_details`
--
CREATE TABLE `invoice_details` (
`invoiceId` int(11) NOT NULL,
`invoiceDate` datetime NOT NULL,
`invoiceNumber` varchar(11) CHARACTER SET latin1 NOT NULL,
`totalAmount` float NOT NULL,
`remark` varchar(256) COLLATE utf8_unicode_ci NOT NULL,
`packingCharge` text CHARACTER SET latin1 NOT NULL,
`transportCharge` text CHARACTER SET latin1 NOT NULL,
`partyId` int(11) NOT NULL,
`invoiceDiscount` text CHARACTER SET latin1 NOT NULL,
`isActive` tinyint(4) NOT NULL DEFAULT '1',
`isDeleted` tinyint(4) NOT NULL DEFAULT '0',
`dateCreated` datetime NOT NULL,
`dateModified` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `invoice_items`
--
CREATE TABLE `invoice_items` (
`invoiceItemId` int(11) NOT NULL,
`invoiceId` int(11) NOT NULL,
`productId` int(11) NOT NULL,
`unitId` int(11) NOT NULL,
`quantity` float NOT NULL,
`itemRate` float NOT NULL,
`itemAmount` float NOT NULL,
`itemDiscount` float NOT NULL,
`isActive` tinyint(4) NOT NULL DEFAULT '1',
`isDeleted` tinyint(4) NOT NULL DEFAULT '0',
`dateCreated` datetime NOT NULL,
`dateModified` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `login_info`
--
CREATE TABLE `login_info` (
`username` varchar(256) NOT NULL,
`password` varchar(256) NOT NULL,
`userId` int(11) NOT NULL,
`email` varchar(256) NOT NULL,
`isActive` tinyint(4) NOT NULL DEFAULT '1',
`isDeleted` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `party`
--
CREATE TABLE `party` (
`partyId` int(11) NOT NULL,
`partyName` varchar(256) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`phone` bigint(16) NOT NULL,
`email` varchar(256) CHARACTER SET latin1 NOT NULL,
`city` varchar(256) CHARACTER SET latin1 NOT NULL,
`address` varchar(256) CHARACTER SET latin1 NOT NULL,
`isActive` tinyint(4) NOT NULL DEFAULT '1',
`isDeleted` tinyint(4) NOT NULL DEFAULT '0',
`dateCreated` datetime NOT NULL,
`dateModified` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`productId` int(11) NOT NULL,
`productName` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL,
`productRate` float NOT NULL,
`unitId` int(11) NOT NULL,
`description` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL,
`size` varchar(256) CHARACTER SET latin1 NOT NULL,
`isActive` tinyint(4) NOT NULL DEFAULT '1',
`isDeleted` tinyint(4) NOT NULL DEFAULT '0',
`dateCreated` datetime NOT NULL,
`dateModified` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `unit`
--
CREATE TABLE `unit` (
`unitId` int(11) NOT NULL,
`unitName` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(256) NOT NULL,
`isActive` tinyint(4) NOT NULL DEFAULT '1',
`isDeleted` tinyint(4) NOT NULL DEFAULT '0',
`dateCreated` datetime NOT NULL,
`dateModified` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `invoice_details`
--
ALTER TABLE `invoice_details`
ADD PRIMARY KEY (`invoiceId`),
ADD KEY `partyId_invoice` (`partyId`);
--
-- Indexes for table `invoice_items`
--
ALTER TABLE `invoice_items`
ADD PRIMARY KEY (`invoiceItemId`),
ADD KEY `invoiceId_items` (`invoiceId`),
ADD KEY `productId_items` (`productId`),
ADD KEY `unitId_items` (`unitId`);
--
-- Indexes for table `login_info`
--
ALTER TABLE `login_info`
ADD PRIMARY KEY (`userId`);
--
-- Indexes for table `party`
--
ALTER TABLE `party`
ADD PRIMARY KEY (`partyId`);
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`productId`);
--
-- Indexes for table `unit`
--
ALTER TABLE `unit`
ADD PRIMARY KEY (`unitId`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `invoice_details`
--
ALTER TABLE `invoice_details`
MODIFY `invoiceId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `invoice_items`
--
ALTER TABLE `invoice_items`
MODIFY `invoiceItemId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;
--
-- AUTO_INCREMENT for table `login_info`
--
ALTER TABLE `login_info`
MODIFY `userId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `party`
--
ALTER TABLE `party`
MODIFY `partyId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `productId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `unit`
--
ALTER TABLE `unit`
MODIFY `unitId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `invoice_details`
--
ALTER TABLE `invoice_details`
ADD CONSTRAINT `partyId_invoice` FOREIGN KEY (`partyId`) REFERENCES `party` (`partyId`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Constraints for table `invoice_items`
--
ALTER TABLE `invoice_items`
ADD CONSTRAINT `invoiceId_items` FOREIGN KEY (`invoiceId`) REFERENCES `invoice_details` (`invoiceId`) ON DELETE CASCADE ON UPDATE NO ACTION,
ADD CONSTRAINT `productId_items` FOREIGN KEY (`productId`) REFERENCES `products` (`productId`) ON DELETE CASCADE ON UPDATE NO ACTION,
ADD CONSTRAINT `unitId_items` FOREIGN KEY (`unitId`) REFERENCES `unit` (`unitId`) ON UPDATE NO ACTION;
COMMIT;
/*!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 */;