Removed obsolete stock_moves.visible field; changed add_stock_move() prototype.
[fa-stable.git] / sql / en_US-new.sql
1 -- phpMyAdmin SQL Dump
2 -- version 2.11.8.1deb5
3 -- http://www.phpmyadmin.net
4 --
5 -- Host: localhost
6 -- Generation Time: Sep 26, 2014 at 11:37 AM
7 -- Server version: 5.0.51
8 -- PHP Version: 5.2.6-1+lenny2
9
10 --
11 -- Database: `fatest`
12 --
13
14 -- --------------------------------------------------------
15
16 --
17 -- Table structure for table `0_areas`
18 --
19
20 DROP TABLE IF EXISTS `0_areas`;
21 CREATE TABLE IF NOT EXISTS `0_areas` (
22   `area_code` int(11) NOT NULL auto_increment,
23   `description` varchar(60) NOT NULL default '',
24   `inactive` tinyint(1) NOT NULL default '0',
25   PRIMARY KEY  (`area_code`),
26   UNIQUE KEY `description` (`description`)
27 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=2 ;
28
29 --
30 -- Dumping data for table `0_areas`
31 --
32
33 INSERT INTO `0_areas` VALUES(1, 'Global', 0);
34
35 -- --------------------------------------------------------
36
37 --
38 -- Table structure for table `0_attachments`
39 --
40
41 DROP TABLE IF EXISTS `0_attachments`;
42 CREATE TABLE IF NOT EXISTS `0_attachments` (
43   `id` int(11) unsigned NOT NULL auto_increment,
44   `description` varchar(60) NOT NULL default '',
45   `type_no` int(11) NOT NULL default '0',
46   `trans_no` int(11) NOT NULL default '0',
47   `unique_name` varchar(60) NOT NULL default '',
48   `tran_date` date NOT NULL default '0000-00-00',
49   `filename` varchar(60) NOT NULL default '',
50   `filesize` int(11) NOT NULL default '0',
51   `filetype` varchar(60) NOT NULL default '',
52   PRIMARY KEY  (`id`),
53   KEY `type_no` (`type_no`,`trans_no`)
54 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
55
56 --
57 -- Dumping data for table `0_attachments`
58 --
59
60
61 -- --------------------------------------------------------
62
63 --
64 -- Table structure for table `0_audit_trail`
65 --
66
67 DROP TABLE IF EXISTS `0_audit_trail`;
68 CREATE TABLE IF NOT EXISTS `0_audit_trail` (
69   `id` int(11) NOT NULL auto_increment,
70   `type` smallint(6) unsigned NOT NULL default '0',
71   `trans_no` int(11) unsigned NOT NULL default '0',
72   `user` smallint(6) unsigned NOT NULL default '0',
73   `stamp` timestamp NOT NULL,
74   `description` varchar(60) default NULL,
75   `fiscal_year` int(11) NOT NULL default 0,
76   `gl_date` date NOT NULL default '0000-00-00',
77   `gl_seq` int(11) unsigned default NULL,
78   PRIMARY KEY  (`id`),
79   KEY `Seq` (`fiscal_year`,`gl_date`,`gl_seq`),
80   KEY `Type_and_Number` (`type`,`trans_no`)
81 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
82
83 --
84 -- Dumping data for table `0_audit_trail`
85 --
86
87
88 -- --------------------------------------------------------
89
90 --
91 -- Table structure for table `0_bank_accounts`
92 --
93
94 DROP TABLE IF EXISTS `0_bank_accounts`;
95 CREATE TABLE IF NOT EXISTS `0_bank_accounts` (
96   `account_code` varchar(15) NOT NULL default '',
97   `account_type` smallint(6) NOT NULL default '0',
98   `bank_account_name` varchar(60) NOT NULL default '',
99   `bank_account_number` varchar(100) NOT NULL default '',
100   `bank_name` varchar(60) NOT NULL default '',
101   `bank_address` tinytext,
102   `bank_curr_code` char(3) NOT NULL default '',
103   `dflt_curr_act` tinyint(1) NOT NULL default '0',
104   `id` smallint(6) NOT NULL auto_increment,
105   `bank_charge_act` varchar(15) NOT NULL default '',
106   `last_reconciled_date` timestamp NOT NULL default '0000-00-00 00:00:00',
107   `ending_reconcile_balance` double NOT NULL default '0',
108   `inactive` tinyint(1) NOT NULL default '0',
109   PRIMARY KEY  (`id`),
110   KEY `bank_account_name` (`bank_account_name`),
111   KEY `bank_account_number` (`bank_account_number`),
112   KEY `account_code` (`account_code`)
113 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=3 ;
114
115 --
116 -- Dumping data for table `0_bank_accounts`
117 --
118
119 INSERT INTO `0_bank_accounts` VALUES('1060', 0, 'Current account', 'N/A', 'N/A', '', 'USD', 1, 1, '5690', '0000-00-00 00:00:00', 0, 0);
120 INSERT INTO `0_bank_accounts` VALUES('1065', 3, 'Petty Cash account', 'N/A', 'N/A', '', 'USD', 0, 2, '5690', '0000-00-00 00:00:00', 0, 0);
121
122 -- --------------------------------------------------------
123
124 --
125 -- Table structure for table `0_bank_trans`
126 --
127
128 DROP TABLE IF EXISTS `0_bank_trans`;
129 CREATE TABLE IF NOT EXISTS `0_bank_trans` (
130   `id` int(11) NOT NULL auto_increment,
131   `type` smallint(6) default NULL,
132   `trans_no` int(11) default NULL,
133   `bank_act` varchar(15) NOT NULL default '',
134   `ref` varchar(40) default NULL,
135   `trans_date` date NOT NULL default '0000-00-00',
136   `amount` double default NULL,
137   `dimension_id` int(11) NOT NULL default '0',
138   `dimension2_id` int(11) NOT NULL default '0',
139   `person_type_id` int(11) NOT NULL default '0',
140   `person_id` tinyblob,
141   `reconciled` date default NULL,
142   PRIMARY KEY  (`id`),
143   KEY `bank_act` (`bank_act`,`ref`),
144   KEY `type` (`type`,`trans_no`),
145   KEY `bank_act_2` (`bank_act`,`reconciled`),
146   KEY `bank_act_3` (`bank_act`,`trans_date`)
147 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
148
149 --
150 -- Dumping data for table `0_bank_trans`
151 --
152
153
154 -- --------------------------------------------------------
155
156 --
157 -- Table structure for table `0_bom`
158 --
159
160 DROP TABLE IF EXISTS `0_bom`;
161 CREATE TABLE IF NOT EXISTS `0_bom` (
162   `id` int(11) NOT NULL auto_increment,
163   `parent` char(20) NOT NULL default '',
164   `component` char(20) NOT NULL default '',
165   `workcentre_added` int(11) NOT NULL default '0',
166   `loc_code` char(5) NOT NULL default '',
167   `quantity` double NOT NULL default '1',
168   PRIMARY KEY  (`parent`,`component`,`workcentre_added`,`loc_code`),
169   KEY `component` (`component`),
170   KEY `id` (`id`),
171   KEY `loc_code` (`loc_code`),
172   KEY `parent` (`parent`,`loc_code`),
173   KEY `workcentre_added` (`workcentre_added`)
174 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
175
176 --
177 -- Dumping data for table `0_bom`
178 --
179
180
181 -- --------------------------------------------------------
182
183 --
184 -- Table structure for table `0_budget_trans`
185 --
186
187 DROP TABLE IF EXISTS `0_budget_trans`;
188 CREATE TABLE IF NOT EXISTS `0_budget_trans` (
189   `id` int(11) NOT NULL auto_increment,
190   `tran_date` date NOT NULL default '0000-00-00',
191   `account` varchar(15) NOT NULL default '',
192   `memo_` tinytext NOT NULL,
193   `amount` double NOT NULL default '0',
194   `dimension_id` int(11) default '0',
195   `dimension2_id` int(11) default '0',
196   PRIMARY KEY  (`id`),
197   KEY `Account` (`account`,`tran_date`,`dimension_id`,`dimension2_id`)
198 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
199
200 --
201 -- Dumping data for table `0_budget_trans`
202 --
203
204
205 -- --------------------------------------------------------
206
207 --
208 -- Table structure for table `0_chart_class`
209 --
210
211 DROP TABLE IF EXISTS `0_chart_class`;
212 CREATE TABLE IF NOT EXISTS `0_chart_class` (
213   `cid` varchar(3) NOT NULL,
214   `class_name` varchar(60) NOT NULL default '',
215   `ctype` tinyint(1) NOT NULL default '0',
216   `inactive` tinyint(1) NOT NULL default '0',
217   PRIMARY KEY  (`cid`)
218 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
219
220 --
221 -- Dumping data for table `0_chart_class`
222 --
223
224 INSERT INTO `0_chart_class` VALUES('1', 'Assets', 1, 0);
225 INSERT INTO `0_chart_class` VALUES('2', 'Liabilities', 2, 0);
226 INSERT INTO `0_chart_class` VALUES('3', 'Income', 4, 0);
227 INSERT INTO `0_chart_class` VALUES('4', 'Costs', 6, 0);
228
229 -- --------------------------------------------------------
230
231 --
232 -- Table structure for table `0_chart_master`
233 --
234
235 DROP TABLE IF EXISTS `0_chart_master`;
236 CREATE TABLE IF NOT EXISTS `0_chart_master` (
237   `account_code` varchar(15) NOT NULL default '',
238   `account_code2` varchar(15) NOT NULL default '',
239   `account_name` varchar(60) NOT NULL default '',
240   `account_type` varchar(10) NOT NULL default '0',
241   `inactive` tinyint(1) NOT NULL default '0',
242   PRIMARY KEY  (`account_code`),
243   KEY `account_name` (`account_name`),
244   KEY `accounts_by_type` (`account_type`,`account_code`)
245 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
246
247 --
248 -- Dumping data for table `0_chart_master`
249 --
250
251 INSERT INTO `0_chart_master` VALUES('1060', '', 'Checking Account', '1', 0);
252 INSERT INTO `0_chart_master` VALUES('1065', '', 'Petty Cash', '1', 0);
253 INSERT INTO `0_chart_master` VALUES('1200', '', 'Accounts Receivables', '1', 0);
254 INSERT INTO `0_chart_master` VALUES('1205', '', 'Allowance for doubtful accounts', '1', 0);
255 INSERT INTO `0_chart_master` VALUES('1510', '', 'Inventory', '2', 0);
256 INSERT INTO `0_chart_master` VALUES('1520', '', 'Stocks of Raw Materials', '2', 0);
257 INSERT INTO `0_chart_master` VALUES('1530', '', 'Stocks of Work In Progress', '2', 0);
258 INSERT INTO `0_chart_master` VALUES('1540', '', 'Stocks of Finsihed Goods', '2', 0);
259 INSERT INTO `0_chart_master` VALUES('1550', '', 'Goods Received Clearing account', '2', 0);
260 INSERT INTO `0_chart_master` VALUES('1820', '', 'Office Furniture & Equipment', '3', 0);
261 INSERT INTO `0_chart_master` VALUES('1825', '', 'Accum. Amort. -Furn. & Equip.', '3', 0);
262 INSERT INTO `0_chart_master` VALUES('1840', '', 'Vehicle', '3', 0);
263 INSERT INTO `0_chart_master` VALUES('1845', '', 'Accum. Amort. -Vehicle', '3', 0);
264 INSERT INTO `0_chart_master` VALUES('2100', '', 'Accounts Payable', '4', 0);
265 INSERT INTO `0_chart_master` VALUES('2110', '', 'Accrued Income Tax - Federal', '4', 0);
266 INSERT INTO `0_chart_master` VALUES('2120', '', 'Accrued Income Tax - State', '4', 0);
267 INSERT INTO `0_chart_master` VALUES('2130', '', 'Accrued Franchise Tax', '4', 0);
268 INSERT INTO `0_chart_master` VALUES('2140', '', 'Accrued Real & Personal Prop Tax', '4', 0);
269 INSERT INTO `0_chart_master` VALUES('2150', '', 'Sales Tax', '4', 0);
270 INSERT INTO `0_chart_master` VALUES('2160', '', 'Accrued Use Tax Payable', '4', 0);
271 INSERT INTO `0_chart_master` VALUES('2210', '', 'Accrued Wages', '4', 0);
272 INSERT INTO `0_chart_master` VALUES('2220', '', 'Accrued Comp Time', '4', 0);
273 INSERT INTO `0_chart_master` VALUES('2230', '', 'Accrued Holiday Pay', '4', 0);
274 INSERT INTO `0_chart_master` VALUES('2240', '', 'Accrued Vacation Pay', '4', 0);
275 INSERT INTO `0_chart_master` VALUES('2310', '', 'Accr. Benefits - 401K', '4', 0);
276 INSERT INTO `0_chart_master` VALUES('2320', '', 'Accr. Benefits - Stock Purchase', '4', 0);
277 INSERT INTO `0_chart_master` VALUES('2330', '', 'Accr. Benefits - Med, Den', '4', 0);
278 INSERT INTO `0_chart_master` VALUES('2340', '', 'Accr. Benefits - Payroll Taxes', '4', 0);
279 INSERT INTO `0_chart_master` VALUES('2350', '', 'Accr. Benefits - Credit Union', '4', 0);
280 INSERT INTO `0_chart_master` VALUES('2360', '', 'Accr. Benefits - Savings Bond', '4', 0);
281 INSERT INTO `0_chart_master` VALUES('2370', '', 'Accr. Benefits - Garnish', '4', 0);
282 INSERT INTO `0_chart_master` VALUES('2380', '', 'Accr. Benefits - Charity Cont.', '4', 0);
283 INSERT INTO `0_chart_master` VALUES('2620', '', 'Bank Loans', '5', 0);
284 INSERT INTO `0_chart_master` VALUES('2680', '', 'Loans from Shareholders', '5', 0);
285 INSERT INTO `0_chart_master` VALUES('3350', '', 'Common Shares', '6', 0);
286 INSERT INTO `0_chart_master` VALUES('3590', '', 'Retained Earnings - prior years', '7', 0);
287 INSERT INTO `0_chart_master` VALUES('4010', '', 'Sales', '8', 0);
288 INSERT INTO `0_chart_master` VALUES('4430', '', 'Shipping & Handling', '9', 0);
289 INSERT INTO `0_chart_master` VALUES('4440', '', 'Interest', '9', 0);
290 INSERT INTO `0_chart_master` VALUES('4450', '', 'Foreign Exchange Gain', '9', 0);
291 INSERT INTO `0_chart_master` VALUES('4500', '', 'Prompt Payment Discounts', '9', 0);
292 INSERT INTO `0_chart_master` VALUES('4510', '', 'Discounts Given', '9', 0);
293 INSERT INTO `0_chart_master` VALUES('5010', '', 'Cost of Goods Sold - Retail', '10', 0);
294 INSERT INTO `0_chart_master` VALUES('5020', '', 'Material Usage Varaiance', '10', 0);
295 INSERT INTO `0_chart_master` VALUES('5030', '', 'Consumable Materials', '10', 0);
296 INSERT INTO `0_chart_master` VALUES('5040', '', 'Purchase price Variance', '10', 0);
297 INSERT INTO `0_chart_master` VALUES('5050', '', 'Purchases of materials', '10', 0);
298 INSERT INTO `0_chart_master` VALUES('5060', '', 'Discounts Received', '10', 0);
299 INSERT INTO `0_chart_master` VALUES('5100', '', 'Freight', '10', 0);
300 INSERT INTO `0_chart_master` VALUES('5410', '', 'Wages & Salaries', '11', 0);
301 INSERT INTO `0_chart_master` VALUES('5420', '', 'Wages - Overtime', '11', 0);
302 INSERT INTO `0_chart_master` VALUES('5430', '', 'Benefits - Comp Time', '11', 0);
303 INSERT INTO `0_chart_master` VALUES('5440', '', 'Benefits - Payroll Taxes', '11', 0);
304 INSERT INTO `0_chart_master` VALUES('5450', '', 'Benefits - Workers Comp', '11', 0);
305 INSERT INTO `0_chart_master` VALUES('5460', '', 'Benefits - Pension', '11', 0);
306 INSERT INTO `0_chart_master` VALUES('5470', '', 'Benefits - General Benefits', '11', 0);
307 INSERT INTO `0_chart_master` VALUES('5510', '', 'Inc Tax Exp - Federal', '11', 0);
308 INSERT INTO `0_chart_master` VALUES('5520', '', 'Inc Tax Exp - State', '11', 0);
309 INSERT INTO `0_chart_master` VALUES('5530', '', 'Taxes - Real Estate', '11', 0);
310 INSERT INTO `0_chart_master` VALUES('5540', '', 'Taxes - Personal Property', '11', 0);
311 INSERT INTO `0_chart_master` VALUES('5550', '', 'Taxes - Franchise', '11', 0);
312 INSERT INTO `0_chart_master` VALUES('5560', '', 'Taxes - Foreign Withholding', '11', 0);
313 INSERT INTO `0_chart_master` VALUES('5610', '', 'Accounting & Legal', '12', 0);
314 INSERT INTO `0_chart_master` VALUES('5615', '', 'Advertising & Promotions', '12', 0);
315 INSERT INTO `0_chart_master` VALUES('5620', '', 'Bad Debts', '12', 0);
316 INSERT INTO `0_chart_master` VALUES('5660', '', 'Amortization Expense', '12', 0);
317 INSERT INTO `0_chart_master` VALUES('5685', '', 'Insurance', '12', 0);
318 INSERT INTO `0_chart_master` VALUES('5690', '', 'Interest & Bank Charges', '12', 0);
319 INSERT INTO `0_chart_master` VALUES('5700', '', 'Office Supplies', '12', 0);
320 INSERT INTO `0_chart_master` VALUES('5760', '', 'Rent', '12', 0);
321 INSERT INTO `0_chart_master` VALUES('5765', '', 'Repair & Maintenance', '12', 0);
322 INSERT INTO `0_chart_master` VALUES('5780', '', 'Telephone', '12', 0);
323 INSERT INTO `0_chart_master` VALUES('5785', '', 'Travel & Entertainment', '12', 0);
324 INSERT INTO `0_chart_master` VALUES('5790', '', 'Utilities', '12', 0);
325 INSERT INTO `0_chart_master` VALUES('5795', '', 'Registrations', '12', 0);
326 INSERT INTO `0_chart_master` VALUES('5800', '', 'Licenses', '12', 0);
327 INSERT INTO `0_chart_master` VALUES('5810', '', 'Foreign Exchange Loss', '12', 0);
328 INSERT INTO `0_chart_master` VALUES('9990', '', 'Year Profit/Loss', '12', 0);
329
330 -- --------------------------------------------------------
331
332 --
333 -- Table structure for table `0_chart_types`
334 --
335
336 DROP TABLE IF EXISTS `0_chart_types`;
337 CREATE TABLE IF NOT EXISTS `0_chart_types` (
338   `id` varchar(10) NOT NULL,
339   `name` varchar(60) NOT NULL default '',
340   `class_id` varchar(3) NOT NULL default '',
341   `parent` varchar(10) NOT NULL default '-1',
342   `inactive` tinyint(1) NOT NULL default '0',
343   PRIMARY KEY  (`id`),
344   KEY `name` (`name`),
345   KEY `class_id` (`class_id`)
346 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
347
348 --
349 -- Dumping data for table `0_chart_types`
350 --
351
352 INSERT INTO `0_chart_types` VALUES('1', 'Current Assets', '1', '', 0);
353 INSERT INTO `0_chart_types` VALUES('2', 'Inventory Assets', '1', '', 0);
354 INSERT INTO `0_chart_types` VALUES('3', 'Capital Assets', '1', '', 0);
355 INSERT INTO `0_chart_types` VALUES('4', 'Current Liabilities', '2', '', 0);
356 INSERT INTO `0_chart_types` VALUES('5', 'Long Term Liabilities', '2', '', 0);
357 INSERT INTO `0_chart_types` VALUES('6', 'Share Capital', '2', '', 0);
358 INSERT INTO `0_chart_types` VALUES('7', 'Retained Earnings', '2', '', 0);
359 INSERT INTO `0_chart_types` VALUES('8', 'Sales Revenue', '3', '', 0);
360 INSERT INTO `0_chart_types` VALUES('9', 'Other Revenue', '3', '', 0);
361 INSERT INTO `0_chart_types` VALUES('10', 'Cost of Goods Sold', '4', '', 0);
362 INSERT INTO `0_chart_types` VALUES('11', 'Payroll Expenses', '4', '', 0);
363 INSERT INTO `0_chart_types` VALUES('12', 'General & Administrative expenses', '4', '', 0);
364
365 -- --------------------------------------------------------
366
367 --
368 -- Table structure for table `0_comments`
369 --
370
371 DROP TABLE IF EXISTS `0_comments`;
372 CREATE TABLE IF NOT EXISTS `0_comments` (
373   `type` int(11) NOT NULL default '0',
374   `id` int(11) NOT NULL default '0',
375   `date_` date default '0000-00-00',
376   `memo_` tinytext,
377   KEY `type_and_id` (`type`,`id`)
378 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
379
380 --
381 -- Dumping data for table `0_comments`
382 --
383
384
385 -- --------------------------------------------------------
386
387 --
388 -- Table structure for table `0_credit_status`
389 --
390
391 DROP TABLE IF EXISTS `0_credit_status`;
392 CREATE TABLE IF NOT EXISTS `0_credit_status` (
393   `id` int(11) NOT NULL auto_increment,
394   `reason_description` char(100) NOT NULL default '',
395   `dissallow_invoices` tinyint(1) NOT NULL default '0',
396   `inactive` tinyint(1) NOT NULL default '0',
397   PRIMARY KEY  (`id`),
398   UNIQUE KEY `reason_description` (`reason_description`)
399 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=5 ;
400
401 --
402 -- Dumping data for table `0_credit_status`
403 --
404
405 INSERT INTO `0_credit_status` VALUES(1, 'Good History', 0, 0);
406 INSERT INTO `0_credit_status` VALUES(3, 'No more work until payment received', 1, 0);
407 INSERT INTO `0_credit_status` VALUES(4, 'In liquidation', 1, 0);
408
409 -- --------------------------------------------------------
410
411 --
412 -- Table structure for table `0_crm_categories`
413 --
414
415 DROP TABLE IF EXISTS `0_crm_categories`;
416 CREATE TABLE IF NOT EXISTS `0_crm_categories` (
417   `id` int(11) NOT NULL auto_increment COMMENT 'pure technical key',
418   `type` varchar(20) NOT NULL COMMENT 'contact type e.g. customer',
419   `action` varchar(20) NOT NULL COMMENT 'detailed usage e.g. department',
420   `name` varchar(30) NOT NULL COMMENT 'for category selector',
421   `description` tinytext NOT NULL COMMENT 'usage description',
422   `system` tinyint(1) NOT NULL default '0' COMMENT 'nonzero for core system usage',
423   `inactive` tinyint(1) NOT NULL default '0',
424   PRIMARY KEY  (`id`),
425   UNIQUE KEY `type` (`type`,`action`),
426   UNIQUE KEY `type_2` (`type`,`name`)
427 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=13 ;
428
429 --
430 -- Dumping data for table `0_crm_categories`
431 --
432
433 INSERT INTO `0_crm_categories` VALUES(1, 'cust_branch', 'general', 'General', 'General contact data for customer branch (overrides company setting)', 1, 0);
434 INSERT INTO `0_crm_categories` VALUES(2, 'cust_branch', 'invoice', 'Invoices', 'Invoice posting (overrides company setting)', 1, 0);
435 INSERT INTO `0_crm_categories` VALUES(3, 'cust_branch', 'order', 'Orders', 'Order confirmation (overrides company setting)', 1, 0);
436 INSERT INTO `0_crm_categories` VALUES(4, 'cust_branch', 'delivery', 'Deliveries', 'Delivery coordination (overrides company setting)', 1, 0);
437 INSERT INTO `0_crm_categories` VALUES(5, 'customer', 'general', 'General', 'General contact data for customer', 1, 0);
438 INSERT INTO `0_crm_categories` VALUES(6, 'customer', 'order', 'Orders', 'Order confirmation', 1, 0);
439 INSERT INTO `0_crm_categories` VALUES(7, 'customer', 'delivery', 'Deliveries', 'Delivery coordination', 1, 0);
440 INSERT INTO `0_crm_categories` VALUES(8, 'customer', 'invoice', 'Invoices', 'Invoice posting', 1, 0);
441 INSERT INTO `0_crm_categories` VALUES(9, 'supplier', 'general', 'General', 'General contact data for supplier', 1, 0);
442 INSERT INTO `0_crm_categories` VALUES(10, 'supplier', 'order', 'Orders', 'Order confirmation', 1, 0);
443 INSERT INTO `0_crm_categories` VALUES(11, 'supplier', 'delivery', 'Deliveries', 'Delivery coordination', 1, 0);
444 INSERT INTO `0_crm_categories` VALUES(12, 'supplier', 'invoice', 'Invoices', 'Invoice posting', 1, 0);
445
446 -- --------------------------------------------------------
447
448 --
449 -- Table structure for table `0_crm_contacts`
450 --
451
452 DROP TABLE IF EXISTS `0_crm_contacts`;
453 CREATE TABLE IF NOT EXISTS `0_crm_contacts` (
454   `id` int(11) NOT NULL auto_increment,
455   `person_id` int(11) NOT NULL default '0' COMMENT 'foreign key to crm_contacts',
456   `type` varchar(20) NOT NULL COMMENT 'foreign key to crm_categories',
457   `action` varchar(20) NOT NULL COMMENT 'foreign key to crm_categories',
458   `entity_id` varchar(11) default NULL COMMENT 'entity id in related class table',
459   PRIMARY KEY  (`id`),
460   KEY `type` (`type`,`action`)
461 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
462
463 --
464 -- Dumping data for table `0_crm_contacts`
465 --
466
467 -- --------------------------------------------------------
468
469 --
470 -- Table structure for table `0_crm_persons`
471 --
472
473 DROP TABLE IF EXISTS `0_crm_persons`;
474 CREATE TABLE IF NOT EXISTS `0_crm_persons` (
475   `id` int(11) NOT NULL auto_increment,
476   `ref` varchar(30) NOT NULL,
477   `name` varchar(60) NOT NULL,
478   `name2` varchar(60) default NULL,
479   `address` tinytext,
480   `phone` varchar(30) default NULL,
481   `phone2` varchar(30) default NULL,
482   `fax` varchar(30) default NULL,
483   `email` varchar(100) default NULL,
484   `lang` char(5) default NULL,
485   `notes` tinytext NOT NULL,
486   `inactive` tinyint(1) NOT NULL default '0',
487   PRIMARY KEY  (`id`),
488   KEY `ref` (`ref`)
489 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
490
491 --
492 -- Dumping data for table `0_crm_persons`
493 --
494
495
496 -- --------------------------------------------------------
497
498 --
499 -- Table structure for table `0_currencies`
500 --
501
502 DROP TABLE IF EXISTS `0_currencies`;
503 CREATE TABLE IF NOT EXISTS `0_currencies` (
504   `currency` varchar(60) NOT NULL default '',
505   `curr_abrev` char(3) NOT NULL default '',
506   `curr_symbol` varchar(10) NOT NULL default '',
507   `country` varchar(100) NOT NULL default '',
508   `hundreds_name` varchar(15) NOT NULL default '',
509   `auto_update` tinyint(1) NOT NULL default '1',
510   `inactive` tinyint(1) NOT NULL default '0',
511   PRIMARY KEY  (`curr_abrev`)
512 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
513
514 --
515 -- Dumping data for table `0_currencies`
516 --
517
518 INSERT INTO `0_currencies` VALUES('US Dollars', 'USD', '$', 'United States', 'Cents', 1, 0);
519 INSERT INTO `0_currencies` VALUES('CA Dollars', 'CAD', '$', 'Canada', 'Cents', 1, 0);
520 INSERT INTO `0_currencies` VALUES('Euro', 'EUR', '?', 'Europe', 'Cents', 1, 0);
521 INSERT INTO `0_currencies` VALUES('Pounds', 'GBP', '?', 'England', 'Pence', 1, 0);
522
523 -- --------------------------------------------------------
524
525 --
526 -- Table structure for table `0_cust_allocations`
527 --
528
529 DROP TABLE IF EXISTS `0_cust_allocations`;
530 CREATE TABLE IF NOT EXISTS `0_cust_allocations` (
531   `id` int(11) NOT NULL auto_increment,
532   `person_id` int(11) DEFAULT NULL,
533   `amt` double unsigned default NULL,
534   `date_alloc` date NOT NULL default '0000-00-00',
535   `trans_no_from` int(11) default NULL,
536   `trans_type_from` int(11) default NULL,
537   `trans_no_to` int(11) default NULL,
538   `trans_type_to` int(11) default NULL,
539   PRIMARY KEY (`id`),
540   UNIQUE KEY `trans_type_from` (`person_id`,`trans_type_from`,`trans_no_from`,`trans_type_to`,`trans_no_to`),
541   KEY `From` (`trans_type_from`,`trans_no_from`),
542   KEY `To` (`trans_type_to`,`trans_no_to`)
543 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=1 ;
544
545 --
546 -- Dumping data for table `0_cust_allocations`
547 --
548
549
550 -- --------------------------------------------------------
551
552 --
553 -- Table structure for table `0_cust_branch`
554 --
555
556 DROP TABLE IF EXISTS `0_cust_branch`;
557 CREATE TABLE IF NOT EXISTS `0_cust_branch` (
558   `branch_code` int(11) NOT NULL auto_increment,
559   `debtor_no` int(11) NOT NULL default '0',
560   `br_name` varchar(60) NOT NULL default '',
561   `branch_ref` varchar(30) NOT NULL default '',
562   `br_address` tinytext NOT NULL,
563   `area` int(11) default NULL,
564   `salesman` int(11) NOT NULL default '0',
565   `default_location` varchar(5) NOT NULL default '',
566   `tax_group_id` int(11) default NULL,
567   `sales_account` varchar(15) NOT NULL default '',
568   `sales_discount_account` varchar(15) NOT NULL default '',
569   `receivables_account` varchar(15) NOT NULL default '',
570   `payment_discount_account` varchar(15) NOT NULL default '',
571   `default_ship_via` int(11) NOT NULL default '1',
572   `br_post_address` tinytext NOT NULL,
573   `group_no` int(11) NOT NULL default '0',
574   `notes` tinytext NOT NULL,
575   `bank_account` varchar(60) DEFAULT NULL,
576   `inactive` tinyint(1) NOT NULL default '0',
577   PRIMARY KEY  (`branch_code`,`debtor_no`),
578   KEY `branch_code` (`branch_code`),
579   KEY `branch_ref` (`branch_ref`),
580   KEY `group_no` (`group_no`)
581 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
582
583 --
584 -- Dumping data for table `0_cust_branch`
585 --
586
587
588 -- --------------------------------------------------------
589
590 --
591 -- Table structure for table `0_debtors_master`
592 --
593
594 DROP TABLE IF EXISTS `0_debtors_master`;
595 CREATE TABLE IF NOT EXISTS `0_debtors_master` (
596   `debtor_no` int(11) NOT NULL auto_increment,
597   `name` varchar(100) NOT NULL default '',
598   `debtor_ref` varchar(30) NOT NULL,
599   `address` tinytext,
600   `tax_id` varchar(55) NOT NULL default '',
601   `curr_code` char(3) NOT NULL default '',
602   `sales_type` int(11) NOT NULL default '1',
603   `dimension_id` int(11) NOT NULL default '0',
604   `dimension2_id` int(11) NOT NULL default '0',
605   `credit_status` int(11) NOT NULL default '0',
606   `payment_terms` int(11) default NULL,
607   `discount` double NOT NULL default '0',
608   `pymt_discount` double NOT NULL default '0',
609   `credit_limit` float NOT NULL default '1000',
610   `notes` tinytext NOT NULL,
611   `inactive` tinyint(1) NOT NULL default '0',
612   PRIMARY KEY  (`debtor_no`),
613   KEY `name` (`name`),
614   UNIQUE KEY `debtor_ref` (`debtor_ref`)
615 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
616
617 --
618 -- Dumping data for table `0_debtors_master`
619 --
620
621
622 -- --------------------------------------------------------
623
624 --
625 -- Table structure for table `0_debtor_trans`
626 --
627
628 DROP TABLE IF EXISTS `0_debtor_trans`;
629 CREATE TABLE IF NOT EXISTS `0_debtor_trans` (
630   `trans_no` int(11) unsigned NOT NULL default '0',
631   `type` smallint(6) unsigned NOT NULL default '0',
632   `version` tinyint(1) unsigned NOT NULL default '0',
633   `debtor_no` int(11) unsigned default NULL,
634   `branch_code` int(11) NOT NULL default '-1',
635   `tran_date` date NOT NULL default '0000-00-00',
636   `due_date` date NOT NULL default '0000-00-00',
637   `reference` varchar(60) NOT NULL default '',
638   `tpe` int(11) NOT NULL default '0',
639   `order_` int(11) NOT NULL default '0',
640   `ov_amount` double NOT NULL default '0',
641   `ov_gst` double NOT NULL default '0',
642   `ov_freight` double NOT NULL default '0',
643   `ov_freight_tax` double NOT NULL default '0',
644   `ov_discount` double NOT NULL default '0',
645   `alloc` double NOT NULL default '0',
646   `prep_amount` double NOT NULL DEFAULT '0',
647   `rate` double NOT NULL default '1',
648   `ship_via` int(11) default NULL,
649   `dimension_id` int(11) NOT NULL default '0',
650   `dimension2_id` int(11) NOT NULL default '0',
651   `payment_terms` int(11) default NULL,
652   `tax_included` tinyint(1) unsigned NOT NULL default '0',
653   PRIMARY KEY  (`type`,`trans_no`),
654   KEY `debtor_no` (`debtor_no`,`branch_code`),
655   KEY `tran_date` (`tran_date`),
656   KEY `order_` (`order_`)
657 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
658
659 --
660 -- Dumping data for table `0_debtor_trans`
661 --
662
663
664 -- --------------------------------------------------------
665
666 --
667 -- Table structure for table `0_debtor_trans_details`
668 --
669
670 DROP TABLE IF EXISTS `0_debtor_trans_details`;
671 CREATE TABLE IF NOT EXISTS `0_debtor_trans_details` (
672   `id` int(11) NOT NULL auto_increment,
673   `debtor_trans_no` int(11) default NULL,
674   `debtor_trans_type` int(11) default NULL,
675   `stock_id` varchar(20) NOT NULL default '',
676   `description` tinytext,
677   `unit_price` double NOT NULL default '0',
678   `unit_tax` double NOT NULL default '0',
679   `quantity` double NOT NULL default '0',
680   `discount_percent` double NOT NULL default '0',
681   `standard_cost` double NOT NULL default '0',
682   `qty_done` double NOT NULL default '0',
683   `src_id` int(11) NOT NULL,
684   PRIMARY KEY  (`id`),
685   KEY `Transaction` (`debtor_trans_type`,`debtor_trans_no`),
686   KEY (`src_id`)
687 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
688
689 --
690 -- Dumping data for table `0_debtor_trans_details`
691 --
692
693
694 -- --------------------------------------------------------
695
696 --
697 -- Table structure for table `0_dimensions`
698 --
699
700 DROP TABLE IF EXISTS `0_dimensions`;
701 CREATE TABLE IF NOT EXISTS `0_dimensions` (
702   `id` int(11) NOT NULL auto_increment,
703   `reference` varchar(60) NOT NULL default '',
704   `name` varchar(60) NOT NULL default '',
705   `type_` tinyint(1) NOT NULL default '1',
706   `closed` tinyint(1) NOT NULL default '0',
707   `date_` date NOT NULL default '0000-00-00',
708   `due_date` date NOT NULL default '0000-00-00',
709   PRIMARY KEY  (`id`),
710   UNIQUE KEY `reference` (`reference`),
711   KEY `date_` (`date_`),
712   KEY `due_date` (`due_date`),
713   KEY `type_` (`type_`)
714 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
715
716 --
717 -- Dumping data for table `0_dimensions`
718 --
719
720
721 -- --------------------------------------------------------
722
723 --
724 -- Table structure for table `0_exchange_rates`
725 --
726
727 DROP TABLE IF EXISTS `0_exchange_rates`;
728 CREATE TABLE IF NOT EXISTS `0_exchange_rates` (
729   `id` int(11) NOT NULL auto_increment,
730   `curr_code` char(3) NOT NULL default '',
731   `rate_buy` double NOT NULL default '0',
732   `rate_sell` double NOT NULL default '0',
733   `date_` date NOT NULL default '0000-00-00',
734   PRIMARY KEY  (`id`),
735   UNIQUE KEY `curr_code` (`curr_code`,`date_`)
736 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
737
738 --
739 -- Dumping data for table `0_exchange_rates`
740 --
741
742
743 -- --------------------------------------------------------
744
745 --
746 -- Table structure for table `0_fiscal_year`
747 --
748
749 DROP TABLE IF EXISTS `0_fiscal_year`;
750 CREATE TABLE IF NOT EXISTS `0_fiscal_year` (
751   `id` int(11) NOT NULL auto_increment,
752   `begin` date default '0000-00-00',
753   `end` date default '0000-00-00',
754   `closed` tinyint(1) NOT NULL default '0',
755   PRIMARY KEY  (`id`),
756   UNIQUE KEY `begin` (`begin`),
757   UNIQUE KEY `end` (`end`)
758 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=3 ;
759
760 --
761 -- Dumping data for table `0_fiscal_year`
762 --
763
764 INSERT INTO `0_fiscal_year` VALUES(1, '2015-01-01', '2015-12-31', 0);
765
766 --
767 -- Table structure for table `0_gl_trans`
768 --
769
770 DROP TABLE IF EXISTS `0_gl_trans`;
771 CREATE TABLE IF NOT EXISTS `0_gl_trans` (
772   `counter` int(11) NOT NULL auto_increment,
773   `type` smallint(6) NOT NULL default '0',
774   `type_no` int(11) NOT NULL default '0',
775   `tran_date` date NOT NULL default '0000-00-00',
776   `account` varchar(15) NOT NULL default '',
777   `memo_` tinytext NOT NULL,
778   `amount` double NOT NULL default '0',
779   `dimension_id` int(11) NOT NULL default '0',
780   `dimension2_id` int(11) NOT NULL default '0',
781   `person_type_id` int(11) default NULL,
782   `person_id` tinyblob,
783   PRIMARY KEY  (`counter`),
784   KEY `Type_and_Number` (`type`,`type_no`),
785   KEY `dimension_id` (`dimension_id`),
786   KEY `dimension2_id` (`dimension2_id`),
787   KEY `tran_date` (`tran_date`),
788   KEY `account_and_tran_date` (`account`,`tran_date`)
789 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
790
791 --
792 -- Dumping data for table `0_gl_trans`
793 --
794
795
796 -- --------------------------------------------------------
797
798 --
799 -- Table structure for table `0_grn_batch`
800 --
801
802 DROP TABLE IF EXISTS `0_grn_batch`;
803 CREATE TABLE IF NOT EXISTS `0_grn_batch` (
804   `id` int(11) NOT NULL auto_increment,
805   `supplier_id` int(11) NOT NULL default '0',
806   `purch_order_no` int(11) default NULL,
807   `reference` varchar(60) NOT NULL default '',
808   `delivery_date` date NOT NULL default '0000-00-00',
809   `loc_code` varchar(5) default NULL,
810   `rate` double NULL default '1',
811   PRIMARY KEY  (`id`),
812   KEY `delivery_date` (`delivery_date`),
813   KEY `purch_order_no` (`purch_order_no`)
814 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
815
816 --
817 -- Dumping data for table `0_grn_batch`
818 --
819
820
821 -- --------------------------------------------------------
822
823 --
824 -- Table structure for table `0_grn_items`
825 --
826
827 DROP TABLE IF EXISTS `0_grn_items`;
828 CREATE TABLE IF NOT EXISTS `0_grn_items` (
829   `id` int(11) NOT NULL auto_increment,
830   `grn_batch_id` int(11) default NULL,
831   `po_detail_item` int(11) NOT NULL default '0',
832   `item_code` varchar(20) NOT NULL default '',
833   `description` tinytext,
834   `qty_recd` double NOT NULL default '0',
835   `quantity_inv` double NOT NULL default '0',
836   PRIMARY KEY  (`id`),
837   KEY `grn_batch_id` (`grn_batch_id`)
838 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
839
840 --
841 -- Dumping data for table `0_grn_items`
842 --
843
844
845 -- --------------------------------------------------------
846
847 --
848 -- Table structure for table `0_groups`
849 --
850
851 DROP TABLE IF EXISTS `0_groups`;
852 CREATE TABLE IF NOT EXISTS `0_groups` (
853   `id` smallint(6) unsigned NOT NULL auto_increment,
854   `description` varchar(60) NOT NULL default '',
855   `inactive` tinyint(1) NOT NULL default '0',
856   PRIMARY KEY  (`id`),
857   UNIQUE KEY `description` (`description`)
858 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=4 ;
859
860 --
861 -- Dumping data for table `0_groups`
862 --
863
864 INSERT INTO `0_groups` VALUES(1, 'Small', 0);
865 INSERT INTO `0_groups` VALUES(2, 'Medium', 0);
866 INSERT INTO `0_groups` VALUES(3, 'Large', 0);
867
868 -- --------------------------------------------------------
869
870 --
871 -- Table structure for table `0_item_codes`
872 --
873
874 DROP TABLE IF EXISTS `0_item_codes`;
875 CREATE TABLE IF NOT EXISTS `0_item_codes` (
876   `id` int(11) unsigned NOT NULL auto_increment,
877   `item_code` varchar(20) NOT NULL,
878   `stock_id` varchar(20) NOT NULL,
879   `description` varchar(200) NOT NULL default '',
880   `category_id` smallint(6) unsigned NOT NULL,
881   `quantity` double NOT NULL default '1',
882   `is_foreign` tinyint(1) NOT NULL default '0',
883   `inactive` tinyint(1) NOT NULL default '0',
884   PRIMARY KEY  (`id`),
885   UNIQUE KEY `stock_id` (`stock_id`,`item_code`),
886   KEY `item_code` (`item_code`)
887 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
888
889 --
890 -- Dumping data for table `0_item_codes`
891 --
892
893
894 -- --------------------------------------------------------
895
896 --
897 -- Table structure for table `0_item_tax_types`
898 --
899
900 DROP TABLE IF EXISTS `0_item_tax_types`;
901 CREATE TABLE IF NOT EXISTS `0_item_tax_types` (
902   `id` int(11) NOT NULL auto_increment,
903   `name` varchar(60) NOT NULL default '',
904   `exempt` tinyint(1) NOT NULL default '0',
905   `inactive` tinyint(1) NOT NULL default '0',
906   PRIMARY KEY  (`id`),
907   UNIQUE KEY `name` (`name`)
908 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=2 ;
909
910 --
911 -- Dumping data for table `0_item_tax_types`
912 --
913
914 INSERT INTO `0_item_tax_types` VALUES(1, 'Regular', 0, 0);
915
916 -- --------------------------------------------------------
917
918 --
919 -- Table structure for table `0_item_tax_type_exemptions`
920 --
921
922 DROP TABLE IF EXISTS `0_item_tax_type_exemptions`;
923 CREATE TABLE IF NOT EXISTS `0_item_tax_type_exemptions` (
924   `item_tax_type_id` int(11) NOT NULL default '0',
925   `tax_type_id` int(11) NOT NULL default '0',
926   PRIMARY KEY  (`item_tax_type_id`,`tax_type_id`)
927 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
928
929 --
930 -- Dumping data for table `0_item_tax_type_exemptions`
931 --
932
933
934 -- --------------------------------------------------------
935
936 --
937 -- Table structure for table `0_item_units`
938 --
939
940 DROP TABLE IF EXISTS `0_item_units`;
941 CREATE TABLE IF NOT EXISTS `0_item_units` (
942   `abbr` varchar(20) NOT NULL,
943   `name` varchar(40) NOT NULL,
944   `decimals` tinyint(2) NOT NULL,
945   `inactive` tinyint(1) NOT NULL default '0',
946   PRIMARY KEY  (`abbr`),
947   UNIQUE KEY `name` (`name`)
948 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
949
950 --
951 -- Dumping data for table `0_item_units`
952 --
953
954 INSERT INTO `0_item_units` VALUES('each', 'Each', 0, 0);
955 INSERT INTO `0_item_units` VALUES('hr', 'Hours', 0, 0);
956
957 -- Table structure for table `0_journal`
958
959 DROP TABLE IF EXISTS `0_journal`;
960 CREATE TABLE `0_journal` (
961   `type` smallint(6) NOT NULL DEFAULT '0',
962   `trans_no` int(11) NOT NULL DEFAULT '0',
963   `tran_date` date DEFAULT '0000-00-00',
964   `reference` varchar(60) NOT NULL DEFAULT '',
965   `source_ref` varchar(60) NOT NULL DEFAULT '',
966   `event_date` date DEFAULT '0000-00-00',
967   `doc_date` date NOT NULL DEFAULT '0000-00-00',
968   `currency` char(3) NOT NULL DEFAULT '',
969   `amount` double NOT NULL DEFAULT '0',
970   `rate` double NOT NULL DEFAULT '1',
971   PRIMARY KEY (`type`,`trans_no`),
972   KEY `tran_date` (`tran_date`)
973 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
974
975 -- Data of table `0_journal`
976
977
978 -- --------------------------------------------------------
979
980 --
981 -- Table structure for table `0_locations`
982 --
983
984 DROP TABLE IF EXISTS `0_locations`;
985 CREATE TABLE IF NOT EXISTS `0_locations` (
986   `loc_code` varchar(5) NOT NULL default '',
987   `location_name` varchar(60) NOT NULL default '',
988   `delivery_address` tinytext NOT NULL,
989   `phone` varchar(30) NOT NULL default '',
990   `phone2` varchar(30) NOT NULL default '',
991   `fax` varchar(30) NOT NULL default '',
992   `email` varchar(100) NOT NULL default '',
993   `contact` varchar(30) NOT NULL default '',
994   `inactive` tinyint(1) NOT NULL default '0',
995   PRIMARY KEY  (`loc_code`)
996 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
997
998 --
999 -- Dumping data for table `0_locations`
1000 --
1001
1002 INSERT INTO `0_locations` VALUES('DEF', 'Default', 'N/A', '', '', '', '', '', 0);
1003
1004 -- --------------------------------------------------------
1005
1006 --
1007 -- Table structure for table `0_loc_stock`
1008 --
1009
1010 DROP TABLE IF EXISTS `0_loc_stock`;
1011 CREATE TABLE IF NOT EXISTS `0_loc_stock` (
1012   `loc_code` char(5) NOT NULL default '',
1013   `stock_id` char(20) NOT NULL default '',
1014   `reorder_level` double NOT NULL default '0',
1015   PRIMARY KEY  (`loc_code`,`stock_id`),
1016   KEY `stock_id` (`stock_id`)
1017 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1018
1019 --
1020 -- Dumping data for table `0_loc_stock`
1021 --
1022
1023
1024 -- --------------------------------------------------------
1025
1026 --
1027 -- Table structure for table `0_movement_types`
1028 --
1029
1030 DROP TABLE IF EXISTS `0_movement_types`;
1031 CREATE TABLE IF NOT EXISTS `0_movement_types` (
1032   `id` int(11) NOT NULL auto_increment,
1033   `name` varchar(60) NOT NULL default '',
1034   `inactive` tinyint(1) NOT NULL default '0',
1035   PRIMARY KEY  (`id`),
1036   UNIQUE KEY `name` (`name`)
1037 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=2 ;
1038
1039 --
1040 -- Dumping data for table `0_movement_types`
1041 --
1042
1043 INSERT INTO `0_movement_types` VALUES(1, 'Adjustment', 0);
1044
1045 -- --------------------------------------------------------
1046
1047 --
1048 -- Table structure for table `0_payment_terms`
1049 --
1050
1051 DROP TABLE IF EXISTS `0_payment_terms`;
1052 CREATE TABLE IF NOT EXISTS `0_payment_terms` (
1053   `terms_indicator` int(11) NOT NULL auto_increment,
1054   `terms` char(80) NOT NULL default '',
1055   `days_before_due` smallint(6) NOT NULL default '0',
1056   `day_in_following_month` smallint(6) NOT NULL default '0',
1057   `inactive` tinyint(1) NOT NULL default '0',
1058   PRIMARY KEY  (`terms_indicator`),
1059   UNIQUE KEY `terms` (`terms`)
1060 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=5 ;
1061
1062 --
1063 -- Dumping data for table `0_payment_terms`
1064 --
1065
1066 INSERT INTO `0_payment_terms` VALUES(1, 'Due 15th Of the Following Month', 0, 17, 0);
1067 INSERT INTO `0_payment_terms` VALUES(2, 'Due By End Of The Following Month', 0, 30, 0);
1068 INSERT INTO `0_payment_terms` VALUES(3, 'Payment due within 10 days', 10, 0, 0);
1069 INSERT INTO `0_payment_terms` VALUES(4, 'Cash Only', 0, 0, 0);
1070
1071 -- --------------------------------------------------------
1072
1073 --
1074 -- Table structure for table `0_prices`
1075 --
1076
1077 DROP TABLE IF EXISTS `0_prices`;
1078 CREATE TABLE IF NOT EXISTS `0_prices` (
1079   `id` int(11) NOT NULL auto_increment,
1080   `stock_id` varchar(20) NOT NULL default '',
1081   `sales_type_id` int(11) NOT NULL default '0',
1082   `curr_abrev` char(3) NOT NULL default '',
1083   `price` double NOT NULL default '0',
1084   PRIMARY KEY  (`id`),
1085   UNIQUE KEY `price` (`stock_id`,`sales_type_id`,`curr_abrev`)
1086 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1087
1088 --
1089 -- Dumping data for table `0_prices`
1090 --
1091
1092
1093 -- --------------------------------------------------------
1094
1095 --
1096 -- Table structure for table `0_printers`
1097 --
1098
1099 DROP TABLE IF EXISTS `0_printers`;
1100 CREATE TABLE IF NOT EXISTS `0_printers` (
1101   `id` tinyint(3) unsigned NOT NULL auto_increment,
1102   `name` varchar(20) NOT NULL,
1103   `description` varchar(60) NOT NULL,
1104   `queue` varchar(20) NOT NULL,
1105   `host` varchar(40) NOT NULL,
1106   `port` smallint(11) unsigned NOT NULL,
1107   `timeout` tinyint(3) unsigned NOT NULL,
1108   PRIMARY KEY  (`id`),
1109   UNIQUE KEY `name` (`name`)
1110 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=4 ;
1111
1112 --
1113 -- Dumping data for table `0_printers`
1114 --
1115
1116 INSERT INTO `0_printers` VALUES(1, 'QL500', 'Label printer', 'QL500', 'server', 127, 20);
1117 INSERT INTO `0_printers` VALUES(2, 'Samsung', 'Main network printer', 'scx4521F', 'server', 515, 5);
1118 INSERT INTO `0_printers` VALUES(3, 'Local', 'Local print server at user IP', 'lp', '', 515, 10);
1119
1120 -- --------------------------------------------------------
1121
1122 --
1123 -- Table structure for table `0_print_profiles`
1124 --
1125
1126 DROP TABLE IF EXISTS `0_print_profiles`;
1127 CREATE TABLE IF NOT EXISTS `0_print_profiles` (
1128   `id` smallint(6) unsigned NOT NULL auto_increment,
1129   `profile` varchar(30) NOT NULL,
1130   `report` varchar(5) default NULL,
1131   `printer` tinyint(3) unsigned default NULL,
1132   PRIMARY KEY  (`id`),
1133   UNIQUE KEY `profile` (`profile`,`report`)
1134 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=10 ;
1135
1136 --
1137 -- Dumping data for table `0_print_profiles`
1138 --
1139
1140 INSERT INTO `0_print_profiles` VALUES(1, 'Out of office', '', 0);
1141 INSERT INTO `0_print_profiles` VALUES(2, 'Sales Department', '', 0);
1142 INSERT INTO `0_print_profiles` VALUES(3, 'Central', '', 2);
1143 INSERT INTO `0_print_profiles` VALUES(4, 'Sales Department', '104', 2);
1144 INSERT INTO `0_print_profiles` VALUES(5, 'Sales Department', '105', 2);
1145 INSERT INTO `0_print_profiles` VALUES(6, 'Sales Department', '107', 2);
1146 INSERT INTO `0_print_profiles` VALUES(7, 'Sales Department', '109', 2);
1147 INSERT INTO `0_print_profiles` VALUES(8, 'Sales Department', '110', 2);
1148 INSERT INTO `0_print_profiles` VALUES(9, 'Sales Department', '201', 2);
1149
1150 -- --------------------------------------------------------
1151
1152 --
1153 -- Table structure for table `0_purch_data`
1154 --
1155
1156 DROP TABLE IF EXISTS `0_purch_data`;
1157 CREATE TABLE IF NOT EXISTS `0_purch_data` (
1158   `supplier_id` int(11) NOT NULL default '0',
1159   `stock_id` char(20) NOT NULL default '',
1160   `price` double NOT NULL default '0',
1161   `suppliers_uom` char(50) NOT NULL default '',
1162   `conversion_factor` double NOT NULL default '1',
1163   `supplier_description` char(50) NOT NULL default '',
1164   PRIMARY KEY  (`supplier_id`,`stock_id`)
1165 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1166
1167 --
1168 -- Dumping data for table `0_purch_data`
1169 --
1170
1171
1172 -- --------------------------------------------------------
1173
1174 --
1175 -- Table structure for table `0_purch_orders`
1176 --
1177
1178 DROP TABLE IF EXISTS `0_purch_orders`;
1179 CREATE TABLE IF NOT EXISTS `0_purch_orders` (
1180   `order_no` int(11) NOT NULL auto_increment,
1181   `supplier_id` int(11) NOT NULL default '0',
1182   `comments` tinytext,
1183   `ord_date` date NOT NULL default '0000-00-00',
1184   `reference` tinytext NOT NULL,
1185   `requisition_no` tinytext,
1186   `into_stock_location` varchar(5) NOT NULL default '',
1187   `delivery_address` tinytext NOT NULL,
1188   `total` double NOT NULL default '0',
1189   `prep_amount` double NOT NULL DEFAULT '0',
1190   `alloc` double NOT NULL DEFAULT '0',
1191   `tax_included` tinyint(1) NOT NULL default '0',
1192   PRIMARY KEY  (`order_no`),
1193   KEY `ord_date` (`ord_date`)
1194 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1195
1196 --
1197 -- Dumping data for table `0_purch_orders`
1198 --
1199
1200
1201 -- --------------------------------------------------------
1202
1203 --
1204 -- Table structure for table `0_purch_order_details`
1205 --
1206
1207 DROP TABLE IF EXISTS `0_purch_order_details`;
1208 CREATE TABLE IF NOT EXISTS `0_purch_order_details` (
1209   `po_detail_item` int(11) NOT NULL auto_increment,
1210   `order_no` int(11) NOT NULL default '0',
1211   `item_code` varchar(20) NOT NULL default '',
1212   `description` tinytext,
1213   `delivery_date` date NOT NULL default '0000-00-00',
1214   `qty_invoiced` double NOT NULL default '0',
1215   `unit_price` double NOT NULL default '0',
1216   `act_price` double NOT NULL default '0',
1217   `std_cost_unit` double NOT NULL default '0',
1218   `quantity_ordered` double NOT NULL default '0',
1219   `quantity_received` double NOT NULL default '0',
1220   PRIMARY KEY  (`po_detail_item`),
1221   KEY `order` (`order_no`,`po_detail_item`),
1222   KEY `itemcode` (`item_code`)
1223 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1224
1225 --
1226 -- Dumping data for table `0_purch_order_details`
1227 --
1228
1229
1230 -- --------------------------------------------------------
1231
1232 --
1233 -- Table structure for table `0_quick_entries`
1234 --
1235
1236 DROP TABLE IF EXISTS `0_quick_entries`;
1237 CREATE TABLE IF NOT EXISTS `0_quick_entries` (
1238   `id` smallint(6) unsigned NOT NULL auto_increment,
1239   `type` tinyint(1) NOT NULL default '0',
1240   `description` varchar(60) NOT NULL,
1241   `usage` varchar(120) NULL,
1242   `base_amount` double NOT NULL default '0',
1243   `base_desc` varchar(60) default NULL,
1244   `bal_type` tinyint(1) NOT NULL default '0',
1245   PRIMARY KEY  (`id`),
1246   KEY `description` (`description`)
1247 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=4 ;
1248
1249 --
1250 -- Dumping data for table `0_quick_entries`
1251 --
1252
1253 INSERT INTO `0_quick_entries` VALUES(1, 1, 'Maintenance', NULL, 0, 'Amount', 0);
1254 INSERT INTO `0_quick_entries` VALUES(2, 4, 'Phone', NULL, 0, 'Amount', 0);
1255 INSERT INTO `0_quick_entries` VALUES(3, 2, 'Cash Sales', 'Retail sales without invoice', 0, 'Amount', 0);
1256
1257 -- --------------------------------------------------------
1258
1259 --
1260 -- Table structure for table `0_quick_entry_lines`
1261 --
1262
1263 DROP TABLE IF EXISTS `0_quick_entry_lines`;
1264 CREATE TABLE IF NOT EXISTS `0_quick_entry_lines` (
1265   `id` smallint(6) unsigned NOT NULL auto_increment,
1266   `qid` smallint(6) unsigned NOT NULL,
1267   `amount` double default '0',
1268   `memo` tinytext NOT NULL,
1269   `action` varchar(2) NOT NULL,
1270   `dest_id` varchar(15) NOT NULL default '',
1271   `dimension_id` smallint(6) unsigned default NULL,
1272   `dimension2_id` smallint(6) unsigned default NULL,
1273   PRIMARY KEY  (`id`),
1274   KEY `qid` (`qid`)
1275 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=7 ;
1276
1277 --
1278 -- Dumping data for table `0_quick_entry_lines`
1279 --
1280
1281 INSERT INTO `0_quick_entry_lines` VALUES(1, 1, 0, '', 't-', '1', 0, 0);
1282 INSERT INTO `0_quick_entry_lines` VALUES(2, 2, 0, '', 't-', '1', 0, 0);
1283 INSERT INTO `0_quick_entry_lines` VALUES(3, 3, 0, '', 't-', '1', 0, 0);
1284 INSERT INTO `0_quick_entry_lines` VALUES(4, 3, 0, '', '=', '4010', 0, 0);
1285 INSERT INTO `0_quick_entry_lines` VALUES(5, 1, 0, '', '=', '5765', 0, 0);
1286 INSERT INTO `0_quick_entry_lines` VALUES(6, 2, 0, '', '=', '5780', 0, 0);
1287
1288 -- --------------------------------------------------------
1289
1290 --
1291 -- Table structure for table `0_recurrent_invoices`
1292 --
1293
1294 DROP TABLE IF EXISTS `0_recurrent_invoices`;
1295 CREATE TABLE IF NOT EXISTS `0_recurrent_invoices` (
1296   `id` smallint(6) unsigned NOT NULL auto_increment,
1297   `description` varchar(60) NOT NULL default '',
1298   `order_no` int(11) unsigned NOT NULL,
1299   `debtor_no` int(11) unsigned default NULL,
1300   `group_no` smallint(6) unsigned default NULL,
1301   `days` int(11) NOT NULL default '0',
1302   `monthly` int(11) NOT NULL default '0',
1303   `begin` date NOT NULL default '0000-00-00',
1304   `end` date NOT NULL default '0000-00-00',
1305   `last_sent` date NOT NULL default '0000-00-00',
1306   PRIMARY KEY  (`id`),
1307   UNIQUE KEY `description` (`description`)
1308 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1309
1310 --
1311 -- Dumping data for table `0_recurrent_invoices`
1312 --
1313
1314
1315 -- --------------------------------------------------------
1316
1317 --
1318 -- Table structure for table `0_refs`
1319 --
1320
1321 DROP TABLE IF EXISTS `0_refs`;
1322 CREATE TABLE IF NOT EXISTS `0_refs` (
1323   `id` int(11) NOT NULL default '0',
1324   `type` int(11) NOT NULL default '0',
1325   `reference` varchar(100) NOT NULL default '',
1326   PRIMARY KEY  (`id`,`type`),
1327   KEY `Type_and_Reference` (`type`,`reference`)
1328 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1329
1330 --
1331 -- Dumping data for table `0_refs`
1332 --
1333
1334
1335 -- --------------------------------------------------------
1336
1337 --
1338 -- Table structure for table `0_salesman`
1339 --
1340
1341 DROP TABLE IF EXISTS `0_salesman`;
1342 CREATE TABLE IF NOT EXISTS `0_salesman` (
1343   `salesman_code` int(11) NOT NULL auto_increment,
1344   `salesman_name` char(60) NOT NULL default '',
1345   `salesman_phone` char(30) NOT NULL default '',
1346   `salesman_fax` char(30) NOT NULL default '',
1347   `salesman_email` varchar(100) NOT NULL default '',
1348   `provision` double NOT NULL default '0',
1349   `break_pt` double NOT NULL default '0',
1350   `provision2` double NOT NULL default '0',
1351   `inactive` tinyint(1) NOT NULL default '0',
1352   PRIMARY KEY  (`salesman_code`),
1353   UNIQUE KEY `salesman_name` (`salesman_name`)
1354 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=2 ;
1355
1356 --
1357 -- Dumping data for table `0_salesman`
1358 --
1359
1360 INSERT INTO `0_salesman` VALUES(1, 'Sales Person', '', '', '', 5, 1000, 4, 0);
1361
1362 -- --------------------------------------------------------
1363
1364 --
1365 -- Table structure for table `0_sales_orders`
1366 --
1367
1368 DROP TABLE IF EXISTS `0_sales_orders`;
1369 CREATE TABLE IF NOT EXISTS `0_sales_orders` (
1370   `order_no` int(11) NOT NULL,
1371   `trans_type` smallint(6) NOT NULL default '30',
1372   `version` tinyint(1) unsigned NOT NULL default '0',
1373   `type` tinyint(1) NOT NULL default '0',
1374   `debtor_no` int(11) NOT NULL default '0',
1375   `branch_code` int(11) NOT NULL default '0',
1376   `reference` varchar(100) NOT NULL default '',
1377   `customer_ref` tinytext NOT NULL,
1378   `comments` tinytext,
1379   `ord_date` date NOT NULL default '0000-00-00',
1380   `order_type` int(11) NOT NULL default '0',
1381   `ship_via` int(11) NOT NULL default '0',
1382   `delivery_address` tinytext NOT NULL,
1383   `contact_phone` varchar(30) default NULL,
1384   `contact_email` varchar(100) default NULL,
1385   `deliver_to` tinytext NOT NULL,
1386   `freight_cost` double NOT NULL default '0',
1387   `from_stk_loc` varchar(5) NOT NULL default '',
1388   `delivery_date` date NOT NULL default '0000-00-00',
1389   `payment_terms` int(11) default NULL,
1390   `total` double NOT NULL default '0',
1391   `prep_amount` double NOT NULL DEFAULT '0',
1392   `alloc` double NOT NULL DEFAULT '0',
1393   PRIMARY KEY  (`trans_type`,`order_no`)
1394 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1395
1396 --
1397 -- Dumping data for table `0_sales_orders`
1398 --
1399
1400
1401 -- --------------------------------------------------------
1402
1403 --
1404 -- Table structure for table `0_sales_order_details`
1405 --
1406
1407 DROP TABLE IF EXISTS `0_sales_order_details`;
1408 CREATE TABLE IF NOT EXISTS `0_sales_order_details` (
1409   `id` int(11) NOT NULL auto_increment,
1410   `order_no` int(11) NOT NULL default '0',
1411   `trans_type` smallint(6) NOT NULL default '30',
1412   `stk_code` varchar(20) NOT NULL default '',
1413   `description` tinytext,
1414   `qty_sent` double NOT NULL default '0',
1415   `unit_price` double NOT NULL default '0',
1416   `quantity` double NOT NULL default '0',
1417   `invoiced` double NOT NULL DEFAULT '0',
1418   `discount_percent` double NOT NULL default '0',
1419   PRIMARY KEY  (`id`),
1420   KEY `sorder` (`trans_type`,`order_no`),
1421   KEY `stkcode` (`stk_code`)
1422 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1423
1424 --
1425 -- Dumping data for table `0_sales_order_details`
1426 --
1427
1428
1429 -- --------------------------------------------------------
1430
1431 --
1432 -- Table structure for table `0_sales_pos`
1433 --
1434
1435 DROP TABLE IF EXISTS `0_sales_pos`;
1436 CREATE TABLE IF NOT EXISTS `0_sales_pos` (
1437   `id` smallint(6) unsigned NOT NULL auto_increment,
1438   `pos_name` varchar(30) NOT NULL,
1439   `cash_sale` tinyint(1) NOT NULL,
1440   `credit_sale` tinyint(1) NOT NULL,
1441   `pos_location` varchar(5) NOT NULL,
1442   `pos_account` smallint(6) unsigned NOT NULL,
1443   `inactive` tinyint(1) NOT NULL default '0',
1444   PRIMARY KEY  (`id`),
1445   UNIQUE KEY `pos_name` (`pos_name`)
1446 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=2 ;
1447
1448 --
1449 -- Dumping data for table `0_sales_pos`
1450 --
1451
1452 INSERT INTO `0_sales_pos` VALUES(1, 'Default', 1, 1, 'DEF', 2, 0);
1453
1454 -- --------------------------------------------------------
1455
1456 --
1457 -- Table structure for table `0_sales_types`
1458 --
1459
1460 DROP TABLE IF EXISTS `0_sales_types`;
1461 CREATE TABLE IF NOT EXISTS `0_sales_types` (
1462   `id` int(11) NOT NULL auto_increment,
1463   `sales_type` char(50) NOT NULL default '',
1464   `tax_included` int(1) NOT NULL default '0',
1465   `factor` double NOT NULL default '1',
1466   `inactive` tinyint(1) NOT NULL default '0',
1467   PRIMARY KEY  (`id`),
1468   UNIQUE KEY `sales_type` (`sales_type`)
1469 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=3 ;
1470
1471 --
1472 -- Dumping data for table `0_sales_types`
1473 --
1474
1475 INSERT INTO `0_sales_types` VALUES(1, 'Retail', 1, 1, 0);
1476 INSERT INTO `0_sales_types` VALUES(2, 'Wholesale', 0, 0.7, 0);
1477
1478 -- --------------------------------------------------------
1479
1480 --
1481 -- Table structure for table `0_security_roles`
1482 --
1483
1484 DROP TABLE IF EXISTS `0_security_roles`;
1485 CREATE TABLE IF NOT EXISTS `0_security_roles` (
1486   `id` int(11) NOT NULL auto_increment,
1487   `role` varchar(30) NOT NULL,
1488   `description` varchar(50) default NULL,
1489   `sections` text,
1490   `areas` text,
1491   `inactive` tinyint(1) NOT NULL default '0',
1492   PRIMARY KEY  (`id`),
1493   UNIQUE KEY `role` (`role`)
1494 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=11 ;
1495
1496 --
1497 -- Dumping data for table `0_security_roles`
1498 --
1499
1500 INSERT INTO `0_security_roles` VALUES(1, 'Inquiries', 'Inquiries', '768;2816;3072;3328;5632;5888;8192;8448;10752;11008;13312;15872;16128', '257;258;259;260;513;514;515;516;517;518;519;520;521;522;523;524;525;773;774;2822;3073;3075;3076;3077;3329;3330;3331;3332;3333;3334;3335;5377;5633;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8450;8451;10497;10753;11009;11010;11012;13313;13315;15617;15618;15619;15620;15621;15622;15623;15624;15625;15626;15873;15882;16129;16130;16131;16132;775', 0);
1501 INSERT INTO `0_security_roles` VALUES(2, 'System Administrator', 'System Administrator', '256;512;768;2816;3072;3328;5376;5632;5888;7936;8192;8448;10496;10752;11008;13056;13312;15616;15872;16128', '257;258;259;260;513;514;515;516;517;518;519;520;521;522;523;524;525;526;769;770;771;772;773;774;2817;2818;2819;2820;2821;2822;2823;3073;3074;3082;3075;3076;3077;3078;3079;3080;3081;3329;3330;3331;3332;3333;3334;3335;5377;5633;5634;5635;5636;5637;5641;5638;5639;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8195;8196;8197;8449;8450;8451;10497;10753;10754;10755;10756;10757;11009;11010;11011;11012;13057;13313;13314;13315;15617;15618;15619;15620;15621;15622;15623;15624;15628;15625;15626;15627;15873;15874;15875;15876;15877;15878;15879;15880;15883;15881;15882;16129;16130;16131;16132;775', 0);
1502 INSERT INTO `0_security_roles` VALUES(3, 'Salesman', 'Salesman', '768;3072;5632;8192;15872', '773;774;3073;3075;3081;5633;8194;15873;775', 0);
1503 INSERT INTO `0_security_roles` VALUES(4, 'Stock Manager', 'Stock Manager', '768;2816;3072;3328;5632;5888;8192;8448;10752;11008;13312;15872;16128', '2818;2822;3073;3076;3077;3329;3330;3330;3330;3331;3331;3332;3333;3334;3335;5633;5640;5889;5890;5891;8193;8194;8450;8451;10753;11009;11010;11012;13313;13315;15882;16129;16130;16131;16132;775', 0);
1504 INSERT INTO `0_security_roles` VALUES(5, 'Production Manager', 'Production Manager', '512;768;2816;3072;3328;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '521;523;524;2818;2819;2820;2821;2822;2823;3073;3074;3076;3077;3078;3079;3080;3081;3329;3330;3330;3330;3331;3331;3332;3333;3334;3335;5633;5640;5640;5889;5890;5891;8193;8194;8196;8197;8450;8451;10753;10755;11009;11010;11012;13313;13315;15617;15619;15620;15621;15624;15624;15876;15877;15880;15882;16129;16130;16131;16132;775', 0);
1505 INSERT INTO `0_security_roles` VALUES(6, 'Purchase Officer', 'Purchase Officer', '512;768;2816;3072;3328;5376;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '521;523;524;2818;2819;2820;2821;2822;2823;3073;3074;3076;3077;3078;3079;3080;3081;3329;3330;3330;3330;3331;3331;3332;3333;3334;3335;5377;5633;5635;5640;5640;5889;5890;5891;8193;8194;8196;8197;8449;8450;8451;10753;10755;11009;11010;11012;13313;13315;15617;15619;15620;15621;15624;15624;15876;15877;15880;15882;16129;16130;16131;16132;775', 0);
1506 INSERT INTO `0_security_roles` VALUES(7, 'AR Officer', 'AR Officer', '512;768;2816;3072;3328;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '521;523;524;771;773;774;2818;2819;2820;2821;2822;2823;3073;3073;3074;3075;3076;3077;3078;3079;3080;3081;3081;3329;3330;3330;3330;3331;3331;3332;3333;3334;3335;5633;5633;5634;5637;5638;5639;5640;5640;5889;5890;5891;8193;8194;8194;8196;8197;8450;8451;10753;10755;11009;11010;11012;13313;13315;15617;15619;15620;15621;15624;15624;15873;15876;15877;15878;15880;15882;16129;16130;16131;16132;775', 0);
1507 INSERT INTO `0_security_roles` VALUES(8, 'AP Officer', 'AP Officer', '512;768;2816;3072;3328;5376;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '257;258;259;260;521;523;524;769;770;771;772;773;774;2818;2819;2820;2821;2822;2823;3073;3074;3082;3076;3077;3078;3079;3080;3081;3329;3330;3331;3332;3333;3334;3335;5377;5633;5635;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8196;8197;8449;8450;8451;10497;10753;10755;11009;11010;11012;13057;13313;13315;15617;15619;15620;15621;15624;15876;15877;15880;15882;16129;16130;16131;16132;775', 0);
1508 INSERT INTO `0_security_roles` VALUES(9, 'Accountant', 'New Accountant', '512;768;2816;3072;3328;5376;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '257;258;259;260;521;523;524;771;772;773;774;2818;2819;2820;2821;2822;2823;3073;3074;3075;3076;3077;3078;3079;3080;3081;3329;3330;3331;3332;3333;3334;3335;5377;5633;5634;5635;5637;5638;5639;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8196;8197;8449;8450;8451;10497;10753;10755;11009;11010;11012;13313;13315;15617;15618;15619;15620;15621;15624;15873;15876;15877;15878;15880;15882;16129;16130;16131;16132;775', 0);
1509 INSERT INTO `0_security_roles` VALUES(10, 'Sub Admin', 'Sub Admin', '512;768;2816;3072;3328;5376;5632;5888;8192;8448;10752;11008;13312;15616;15872;16128', '257;258;259;260;521;523;524;771;772;773;774;2818;2819;2820;2821;2822;2823;3073;3074;3082;3075;3076;3077;3078;3079;3080;3081;3329;3330;3331;3332;3333;3334;3335;5377;5633;5634;5635;5637;5638;5639;5640;5889;5890;5891;7937;7938;7939;7940;8193;8194;8196;8197;8449;8450;8451;10497;10753;10755;11009;11010;11012;13057;13313;13315;15617;15619;15620;15621;15624;15873;15874;15876;15877;15878;15879;15880;15882;16129;16130;16131;16132;775', 0);
1510
1511 -- --------------------------------------------------------
1512
1513 --
1514 -- Table structure for table `0_shippers`
1515 --
1516
1517 DROP TABLE IF EXISTS `0_shippers`;
1518 CREATE TABLE IF NOT EXISTS `0_shippers` (
1519   `shipper_id` int(11) NOT NULL auto_increment,
1520   `shipper_name` varchar(60) NOT NULL default '',
1521   `phone` varchar(30) NOT NULL default '',
1522   `phone2` varchar(30) NOT NULL default '',
1523   `contact` tinytext NOT NULL,
1524   `address` tinytext NOT NULL,
1525   `inactive` tinyint(1) NOT NULL default '0',
1526   PRIMARY KEY  (`shipper_id`),
1527   UNIQUE KEY `name` (`shipper_name`)
1528 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=2 ;
1529
1530 --
1531 -- Dumping data for table `0_shippers`
1532 --
1533
1534 INSERT INTO `0_shippers` VALUES(1, 'Default', '', '', '', '', 0);
1535
1536 -- --------------------------------------------------------
1537
1538 --
1539 -- Table structure for table `0_sql_trail`
1540 --
1541
1542 DROP TABLE IF EXISTS `0_sql_trail`;
1543 CREATE TABLE IF NOT EXISTS `0_sql_trail` (
1544   `id` int(11) unsigned NOT NULL auto_increment,
1545   `sql` text NOT NULL,
1546   `result` tinyint(1) NOT NULL,
1547   `msg` varchar(255) NOT NULL,
1548   PRIMARY KEY  (`id`)
1549 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1550
1551 --
1552 -- Dumping data for table `0_sql_trail`
1553 --
1554
1555
1556 -- --------------------------------------------------------
1557
1558 --
1559 -- Table structure for table `0_stock_category`
1560 --
1561
1562 DROP TABLE IF EXISTS `0_stock_category`;
1563 CREATE TABLE IF NOT EXISTS `0_stock_category` (
1564   `category_id` int(11) NOT NULL auto_increment,
1565   `description` varchar(60) NOT NULL default '',
1566   `dflt_tax_type` int(11) NOT NULL default '1',
1567   `dflt_units` varchar(20) NOT NULL default 'each',
1568   `dflt_mb_flag` char(1) NOT NULL default 'B',
1569   `dflt_sales_act` varchar(15) NOT NULL default '',
1570   `dflt_cogs_act` varchar(15) NOT NULL default '',
1571   `dflt_inventory_act` varchar(15) NOT NULL default '',
1572   `dflt_adjustment_act` varchar(15) NOT NULL default '',
1573   `dflt_assembly_act` varchar(15) NOT NULL default '',
1574   `dflt_dim1` int(11) default NULL,
1575   `dflt_dim2` int(11) default NULL,
1576   `inactive` tinyint(1) NOT NULL default '0',
1577   `dflt_no_sale` tinyint(1) NOT NULL default '0',
1578   `dflt_no_purchase` tinyint(1) NOT NULL default '0',
1579   PRIMARY KEY  (`category_id`),
1580   UNIQUE KEY `description` (`description`)
1581 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=5 ;
1582
1583 --
1584 -- Dumping data for table `0_stock_category`
1585 --
1586
1587 INSERT INTO `0_stock_category` VALUES(1, 'Components', 1, 'each', 'B', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0, 0);
1588 INSERT INTO `0_stock_category` VALUES(2, 'Charges', 1, 'each', 'D', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0, 0);
1589 INSERT INTO `0_stock_category` VALUES(3, 'Systems', 1, 'each', 'M', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0, 0);
1590 INSERT INTO `0_stock_category` VALUES(4, 'Services', 1, 'hr', 'D', '4010', '5010', '1510', '5040', '1530', 0, 0, 0, 0, 0);
1591 -- --------------------------------------------------------
1592
1593 --
1594 -- Table structure for table `0_stock_master`
1595 --
1596
1597 DROP TABLE IF EXISTS `0_stock_master`;
1598 CREATE TABLE IF NOT EXISTS `0_stock_master` (
1599   `stock_id` varchar(20) NOT NULL default '',
1600   `category_id` int(11) NOT NULL default '0',
1601   `tax_type_id` int(11) NOT NULL default '0',
1602   `description` varchar(200) NOT NULL default '',
1603   `long_description` tinytext NOT NULL,
1604   `units` varchar(20) NOT NULL default 'each',
1605   `mb_flag` char(1) NOT NULL default 'B',
1606   `sales_account` varchar(15) NOT NULL default '',
1607   `cogs_account` varchar(15) NOT NULL default '',
1608   `inventory_account` varchar(15) NOT NULL default '',
1609   `adjustment_account` varchar(15) NOT NULL default '',
1610   `assembly_account` varchar(15) NOT NULL default '',
1611   `dimension_id` int(11) default NULL,
1612   `dimension2_id` int(11) default NULL,
1613   `actual_cost` double NOT NULL default '0',
1614   `last_cost` double NOT NULL default '0',
1615   `material_cost` double NOT NULL default '0',
1616   `labour_cost` double NOT NULL default '0',
1617   `overhead_cost` double NOT NULL default '0',
1618   `inactive` tinyint(1) NOT NULL default '0',
1619   `no_sale` tinyint(1) NOT NULL default '0',
1620   `no_purchase` tinyint(1) NOT NULL default '0',
1621   `editable` tinyint(1) NOT NULL default '0',
1622   PRIMARY KEY  (`stock_id`)
1623 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1624
1625 --
1626 -- Dumping data for table `0_stock_master`
1627 --
1628
1629
1630 -- --------------------------------------------------------
1631
1632 --
1633 -- Table structure for table `0_stock_moves`
1634 --
1635
1636 CREATE TABLE `0_stock_moves` (
1637   `trans_id` int(11) NOT NULL AUTO_INCREMENT,
1638   `trans_no` int(11) NOT NULL DEFAULT '0',
1639   `stock_id` char(20) NOT NULL DEFAULT '',
1640   `type` smallint(6) NOT NULL DEFAULT '0',
1641   `loc_code` char(5) NOT NULL DEFAULT '',
1642   `tran_date` date NOT NULL DEFAULT '0000-00-00',
1643   `person_id` int(11) DEFAULT NULL,
1644   `price` double NOT NULL DEFAULT '0',
1645   `reference` char(40) NOT NULL DEFAULT '',
1646   `qty` double NOT NULL DEFAULT '1',
1647   `discount_percent` double NOT NULL DEFAULT '0',
1648   `standard_cost` double NOT NULL DEFAULT '0',
1649   PRIMARY KEY (`trans_id`),
1650   KEY `type` (`type`,`trans_no`),
1651   KEY `Move` (`stock_id`,`loc_code`,`tran_date`)
1652 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
1653 --
1654 -- Dumping data for table `0_stock_moves`
1655 --
1656
1657
1658 -- --------------------------------------------------------
1659
1660 --
1661 -- Table structure for table `0_suppliers`
1662 --
1663
1664 DROP TABLE IF EXISTS `0_suppliers`;
1665 CREATE TABLE IF NOT EXISTS `0_suppliers` (
1666   `supplier_id` int(11) NOT NULL auto_increment,
1667   `supp_name` varchar(60) NOT NULL default '',
1668   `supp_ref` varchar(30) NOT NULL default '',
1669   `address` tinytext NOT NULL,
1670   `supp_address` tinytext NOT NULL,
1671   `gst_no` varchar(25) NOT NULL default '',
1672   `contact` varchar(60) NOT NULL default '',
1673   `supp_account_no` varchar(40) NOT NULL default '',
1674   `website` varchar(100) NOT NULL default '',
1675   `bank_account` varchar(60) NOT NULL default '',
1676   `curr_code` char(3) default NULL,
1677   `payment_terms` int(11) default NULL,
1678   `tax_included` tinyint(1) NOT NULL default '0',
1679   `dimension_id` int(11) default '0',
1680   `dimension2_id` int(11) default '0',
1681   `tax_group_id` int(11) default NULL,
1682   `credit_limit` double NOT NULL default '0',
1683   `purchase_account` varchar(15) NOT NULL default '',
1684   `payable_account` varchar(15) NOT NULL default '',
1685   `payment_discount_account` varchar(15) NOT NULL default '',
1686   `notes` tinytext NOT NULL,
1687   `inactive` tinyint(1) NOT NULL default '0',
1688   PRIMARY KEY  (`supplier_id`),
1689   KEY `supp_ref` (`supp_ref`)
1690 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1691
1692 --
1693 -- Dumping data for table `0_suppliers`
1694 --
1695
1696
1697 -- --------------------------------------------------------
1698
1699 --
1700 -- Table structure for table `0_supp_allocations`
1701 --
1702
1703 DROP TABLE IF EXISTS `0_supp_allocations`;
1704 CREATE TABLE IF NOT EXISTS `0_supp_allocations` (
1705   `id` int(11) NOT NULL auto_increment,
1706   `person_id` int(11) DEFAULT NULL,
1707   `amt` double unsigned default NULL,
1708   `date_alloc` date NOT NULL default '0000-00-00',
1709   `trans_no_from` int(11) default NULL,
1710   `trans_type_from` int(11) default NULL,
1711   `trans_no_to` int(11) default NULL,
1712   `trans_type_to` int(11) default NULL,
1713   PRIMARY KEY (`id`),
1714   UNIQUE KEY `trans_type_from` (`person_id`,`trans_type_from`,`trans_no_from`,`trans_type_to`,`trans_no_to`),
1715   KEY `From` (`trans_type_from`,`trans_no_from`),
1716   KEY `To` (`trans_type_to`,`trans_no_to`)
1717 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=1 ;
1718
1719 --
1720 -- Dumping data for table `0_supp_allocations`
1721 --
1722
1723
1724 -- --------------------------------------------------------
1725
1726 --
1727 -- Table structure for table `0_supp_invoice_items`
1728 --
1729
1730 DROP TABLE IF EXISTS `0_supp_invoice_items`;
1731 CREATE TABLE IF NOT EXISTS `0_supp_invoice_items` (
1732   `id` int(11) NOT NULL auto_increment,
1733   `supp_trans_no` int(11) default NULL,
1734   `supp_trans_type` int(11) default NULL,
1735   `gl_code` varchar(15) NOT NULL default '',
1736   `grn_item_id` int(11) default NULL,
1737   `po_detail_item_id` int(11) default NULL,
1738   `stock_id` varchar(20) NOT NULL default '',
1739   `description` tinytext,
1740   `quantity` double NOT NULL default '0',
1741   `unit_price` double NOT NULL default '0',
1742   `unit_tax` double NOT NULL default '0',
1743   `memo_` tinytext,
1744   `dimension_id` int(11) NOT NULL DEFAULT '0',
1745   `dimension2_id` int(11) NOT NULL DEFAULT '0',
1746   PRIMARY KEY  (`id`),
1747   KEY `Transaction` (`supp_trans_type`,`supp_trans_no`,`stock_id`)
1748 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1749
1750 --
1751 -- Dumping data for table `0_supp_invoice_items`
1752 --
1753
1754
1755 -- --------------------------------------------------------
1756
1757 --
1758 -- Table structure for table `0_supp_trans`
1759 --
1760
1761 DROP TABLE IF EXISTS `0_supp_trans`;
1762 CREATE TABLE IF NOT EXISTS `0_supp_trans` (
1763   `trans_no` int(11) unsigned NOT NULL default '0',
1764   `type` smallint(6) unsigned NOT NULL default '0',
1765   `supplier_id` int(11) unsigned default NULL,
1766   `reference` tinytext NOT NULL,
1767   `supp_reference` varchar(60) NOT NULL default '',
1768   `tran_date` date NOT NULL default '0000-00-00',
1769   `due_date` date NOT NULL default '0000-00-00',
1770   `ov_amount` double NOT NULL default '0',
1771   `ov_discount` double NOT NULL default '0',
1772   `ov_gst` double NOT NULL default '0',
1773   `rate` double NOT NULL default '1',
1774   `alloc` double NOT NULL default '0',
1775   `tax_included` tinyint(1) NOT NULL default '0',
1776   PRIMARY KEY  (`type`,`trans_no`),
1777   KEY `supplier_id` (`supplier_id`),
1778   KEY `SupplierID_2` (`supplier_id`,`supp_reference`),
1779   KEY `type` (`type`),
1780   KEY `tran_date` (`tran_date`)
1781 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1782
1783 --
1784 -- Dumping data for table `0_supp_trans`
1785 --
1786
1787
1788 -- --------------------------------------------------------
1789
1790 --
1791 -- Table structure for table `0_sys_prefs`
1792 --
1793
1794 DROP TABLE IF EXISTS `0_sys_prefs`;
1795 CREATE TABLE IF NOT EXISTS `0_sys_prefs` (
1796   `name` varchar(35) NOT NULL default '',
1797   `category` varchar(30) default NULL,
1798   `type` varchar(20) NOT NULL default '',
1799   `length` smallint(6) default NULL,
1800   `value` TEXT NOT NULL DEFAULT '',
1801   PRIMARY KEY  (`name`),
1802   KEY `category` (`category`)
1803 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1804
1805 --
1806 -- Dumping data for table `0_sys_prefs`
1807 --
1808
1809 INSERT INTO `0_sys_prefs` VALUES('coy_name', 'setup.company', 'varchar', 60, 'Company name');
1810 INSERT INTO `0_sys_prefs` VALUES('gst_no', 'setup.company', 'varchar', 25, '');
1811 INSERT INTO `0_sys_prefs` VALUES('coy_no', 'setup.company', 'varchar', 25, '');
1812 INSERT INTO `0_sys_prefs` VALUES('tax_prd', 'setup.company', 'int', 11, '1');
1813 INSERT INTO `0_sys_prefs` VALUES('tax_last', 'setup.company', 'int', 11, '1');
1814 INSERT INTO `0_sys_prefs` VALUES('postal_address', 'setup.company', 'tinytext', 0, 'N/A');
1815 INSERT INTO `0_sys_prefs` VALUES('phone', 'setup.company', 'varchar', 30, '');
1816 INSERT INTO `0_sys_prefs` VALUES('fax', 'setup.company', 'varchar', 30, '');
1817 INSERT INTO `0_sys_prefs` VALUES('email', 'setup.company', 'varchar', 100, '');
1818 INSERT INTO `0_sys_prefs` VALUES('coy_logo', 'setup.company', 'varchar', 100, '');
1819 INSERT INTO `0_sys_prefs` VALUES('domicile', 'setup.company', 'varchar', 55, '');
1820 INSERT INTO `0_sys_prefs` VALUES('curr_default', 'setup.company', 'char', 3, 'USD');
1821 INSERT INTO `0_sys_prefs` VALUES('use_dimension', 'setup.company', 'tinyint', 1, '1');
1822 INSERT INTO `0_sys_prefs` VALUES('f_year', 'setup.company', 'int', 11, '1');
1823 INSERT INTO `0_sys_prefs` VALUES('no_item_list', 'setup.company', 'tinyint', 1, '0');
1824 INSERT INTO `0_sys_prefs` VALUES('no_customer_list', 'setup.company', 'tinyint', 1, '0');
1825 INSERT INTO `0_sys_prefs` VALUES('no_supplier_list', 'setup.company', 'tinyint', 1, '0');
1826 INSERT INTO `0_sys_prefs` VALUES('base_sales', 'setup.company', 'int', 11, '1');
1827 INSERT INTO `0_sys_prefs` VALUES('time_zone', 'setup.company', 'tinyint', 1, '0');
1828 INSERT INTO `0_sys_prefs` VALUES('add_pct', 'setup.company', 'int', 5, '-1');
1829 INSERT INTO `0_sys_prefs` VALUES('round_to', 'setup.company', 'int', 5, '1');
1830 INSERT INTO `0_sys_prefs` VALUES('login_tout', 'setup.company', 'smallint', 6, '600');
1831 INSERT INTO `0_sys_prefs` VALUES('past_due_days', 'glsetup.general', 'int', 11, '30');
1832 INSERT INTO `0_sys_prefs` VALUES('profit_loss_year_act', 'glsetup.general', 'varchar', 15, '9990');
1833 INSERT INTO `0_sys_prefs` VALUES('retained_earnings_act', 'glsetup.general', 'varchar', 15, '3590');
1834 INSERT INTO `0_sys_prefs` VALUES('bank_charge_act', 'glsetup.general', 'varchar', 15, '5690');
1835 INSERT INTO `0_sys_prefs` VALUES('exchange_diff_act', 'glsetup.general', 'varchar', 15, '4450');
1836 INSERT INTO `0_sys_prefs` VALUES('tax_algorithm', 'glsetup.customer', 'tinyint', 1, '1');
1837 INSERT INTO `0_sys_prefs` VALUES('default_credit_limit', 'glsetup.customer', 'int', 11, '1000');
1838 INSERT INTO `0_sys_prefs` VALUES('accumulate_shipping', 'glsetup.customer', 'tinyint', 1, '0');
1839 INSERT INTO `0_sys_prefs` VALUES('legal_text', 'glsetup.customer', 'tinytext', 0, '');
1840 INSERT INTO `0_sys_prefs` VALUES('freight_act', 'glsetup.customer', 'varchar', 15, '4430');
1841 INSERT INTO `0_sys_prefs` VALUES('debtors_act', 'glsetup.sales', 'varchar', 15, '1200');
1842 INSERT INTO `0_sys_prefs` VALUES('default_sales_act', 'glsetup.sales', 'varchar', 15, '4010');
1843 INSERT INTO `0_sys_prefs` VALUES('default_sales_discount_act', 'glsetup.sales', 'varchar', 15, '4510');
1844 INSERT INTO `0_sys_prefs` VALUES('default_prompt_payment_act', 'glsetup.sales', 'varchar', 15, '4500');
1845 INSERT INTO `0_sys_prefs` VALUES('default_delivery_required', 'glsetup.sales', 'smallint', 6, '1');
1846 INSERT INTO `0_sys_prefs` VALUES('default_receival_required', 'glsetup.purchase', 'smallint', 6, '10');
1847 INSERT INTO `0_sys_prefs` VALUES('default_quote_valid_days', 'glsetup.sales', 'smallint', 6, '30');
1848 INSERT INTO `0_sys_prefs` VALUES('default_dim_required', 'glsetup.dims', 'int', 11, '20');
1849 INSERT INTO `0_sys_prefs` VALUES('pyt_discount_act', 'glsetup.purchase', 'varchar', 15, '5060');
1850 INSERT INTO `0_sys_prefs` VALUES('creditors_act', 'glsetup.purchase', 'varchar', 15, '2100');
1851 INSERT INTO `0_sys_prefs` VALUES('po_over_receive', 'glsetup.purchase', 'int', 11, '10');
1852 INSERT INTO `0_sys_prefs` VALUES('po_over_charge', 'glsetup.purchase', 'int', 11, '10');
1853 INSERT INTO `0_sys_prefs` VALUES('allow_negative_stock', 'glsetup.inventory', 'tinyint', 1, '0');
1854 INSERT INTO `0_sys_prefs` VALUES('default_inventory_act', 'glsetup.items', 'varchar', 15, '1510');
1855 INSERT INTO `0_sys_prefs` VALUES('default_cogs_act', 'glsetup.items', 'varchar', 15, '5010');
1856 INSERT INTO `0_sys_prefs` VALUES('default_adj_act', 'glsetup.items', 'varchar', 15, '5040');
1857 INSERT INTO `0_sys_prefs` VALUES('default_inv_sales_act', 'glsetup.items', 'varchar', 15, '4010');
1858 INSERT INTO `0_sys_prefs` VALUES('default_assembly_act', 'glsetup.items', 'varchar', 15, '1530');
1859 INSERT INTO `0_sys_prefs` VALUES('default_workorder_required', 'glsetup.manuf', 'int', 11, '20');
1860 INSERT INTO `0_sys_prefs` VALUES('version_id', 'system', 'varchar', 11, '2.4.0');
1861 INSERT INTO `0_sys_prefs` VALUES('auto_curr_reval', 'setup.company', 'smallint', 6, '1');
1862 INSERT INTO `0_sys_prefs` VALUES('grn_clearing_act', 'glsetup.purchase', 'varchar', 15, '1550');
1863 INSERT INTO `0_sys_prefs` VALUES('bcc_email', 'setup.company', 'varchar', 100, '');
1864 INSERT INTO `0_sys_prefs` VALUES('deferred_income_act', 'glsetup.sales', 'varchar', '15', '');
1865 INSERT INTO `0_sys_prefs` VALUES('gl_closing_date','setup.closing_date', 'date', 8, '');
1866 INSERT INTO `0_sys_prefs` VALUES('alternative_tax_include_on_docs','setup.company', 'tinyint', 1, '0');
1867 INSERT INTO `0_sys_prefs` VALUES('no_zero_lines_amount','glsetup.sales', 'tinyint', 1, '1');
1868 INSERT INTO `0_sys_prefs` VALUES('show_po_item_codes','glsetup.purchase', 'tinyint', 1, '0');
1869 INSERT INTO `0_sys_prefs` VALUES('accounts_alpha','glsetup.general', 'tinyint', 1, '0');
1870 INSERT INTO `0_sys_prefs` VALUES('loc_notification','glsetup.inventory', 'tinyint', 1, '0');
1871 INSERT INTO `0_sys_prefs` VALUES('print_invoice_no','glsetup.sales', 'tinyint', 1, '0');
1872 INSERT INTO `0_sys_prefs` VALUES('allow_negative_prices','glsetup.inventory', 'tinyint', 1, '1');
1873 INSERT INTO `0_sys_prefs` VALUES('print_item_images_on_quote','glsetup.inventory', 'tinyint', 1, '0');
1874 INSERT INTO `0_sys_prefs` VALUES('suppress_tax_rates','setup.company', 'tinyint', 1, '0');
1875
1876 -- --------------------------------------------------------
1877
1878 --
1879 -- Table structure for table `0_sys_types`
1880 --
1881
1882 DROP TABLE IF EXISTS `0_sys_types`;
1883 CREATE TABLE IF NOT EXISTS `0_sys_types` (
1884   `type_id` smallint(6) NOT NULL default '0',
1885   `type_no` int(11) NOT NULL default '1',
1886   `next_reference` varchar(100) NOT NULL default '',
1887   PRIMARY KEY  (`type_id`)
1888 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1889
1890 --
1891 -- Dumping data for table `0_sys_types`
1892 --
1893
1894 INSERT INTO `0_sys_types` VALUES(0, 17, '1');
1895 INSERT INTO `0_sys_types` VALUES(1, 7, '1');
1896 INSERT INTO `0_sys_types` VALUES(2, 4, '1');
1897 INSERT INTO `0_sys_types` VALUES(4, 3, '1');
1898 INSERT INTO `0_sys_types` VALUES(10, 16, '1');
1899 INSERT INTO `0_sys_types` VALUES(11, 2, '1');
1900 INSERT INTO `0_sys_types` VALUES(12, 6, '1');
1901 INSERT INTO `0_sys_types` VALUES(13, 1, '1');
1902 INSERT INTO `0_sys_types` VALUES(16, 2, '1');
1903 INSERT INTO `0_sys_types` VALUES(17, 2, '1');
1904 INSERT INTO `0_sys_types` VALUES(18, 1, '1');
1905 INSERT INTO `0_sys_types` VALUES(20, 6, '1');
1906 INSERT INTO `0_sys_types` VALUES(21, 1, '1');
1907 INSERT INTO `0_sys_types` VALUES(22, 3, '1');
1908 INSERT INTO `0_sys_types` VALUES(25, 1, '1');
1909 INSERT INTO `0_sys_types` VALUES(26, 1, '1');
1910 INSERT INTO `0_sys_types` VALUES(28, 1, '1');
1911 INSERT INTO `0_sys_types` VALUES(29, 1, '1');
1912 INSERT INTO `0_sys_types` VALUES(30, 0, '1');
1913 INSERT INTO `0_sys_types` VALUES(32, 0, '1');
1914 INSERT INTO `0_sys_types` VALUES(35, 1, '1');
1915 INSERT INTO `0_sys_types` VALUES(40, 1, '1');
1916
1917 -- --------------------------------------------------------
1918
1919 --
1920 -- Table structure for table `0_tags`
1921 --
1922
1923 DROP TABLE IF EXISTS `0_tags`;
1924 CREATE TABLE IF NOT EXISTS `0_tags` (
1925   `id` int(11) NOT NULL auto_increment,
1926   `type` smallint(6) NOT NULL,
1927   `name` varchar(30) NOT NULL,
1928   `description` varchar(60) default NULL,
1929   `inactive` tinyint(1) NOT NULL default '0',
1930   PRIMARY KEY  (`id`),
1931   UNIQUE KEY `type` (`type`,`name`)
1932 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1933
1934 --
1935 -- Dumping data for table `0_tags`
1936 --
1937
1938
1939 -- --------------------------------------------------------
1940
1941 --
1942 -- Table structure for table `0_tag_associations`
1943 --
1944
1945 DROP TABLE IF EXISTS `0_tag_associations`;
1946 CREATE TABLE IF NOT EXISTS `0_tag_associations` (
1947   `record_id` varchar(15) NOT NULL,
1948   `tag_id` int(11) NOT NULL,
1949   UNIQUE KEY `record_id` (`record_id`,`tag_id`)
1950 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1951
1952 --
1953 -- Dumping data for table `0_tag_associations`
1954 --
1955
1956
1957 -- --------------------------------------------------------
1958
1959 --
1960 -- Table structure for table `0_tax_groups`
1961 --
1962
1963 DROP TABLE IF EXISTS `0_tax_groups`;
1964 CREATE TABLE IF NOT EXISTS `0_tax_groups` (
1965   `id` int(11) NOT NULL auto_increment,
1966   `name` varchar(60) NOT NULL default '',
1967   `inactive` tinyint(1) NOT NULL default '0',
1968   PRIMARY KEY  (`id`),
1969   UNIQUE KEY `name` (`name`)
1970 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=3 ;
1971
1972 --
1973 -- Dumping data for table `0_tax_groups`
1974 --
1975
1976 INSERT INTO `0_tax_groups` VALUES(1, 'Tax', 0);
1977 INSERT INTO `0_tax_groups` VALUES(2, 'Tax Exempt', 0);
1978
1979 -- --------------------------------------------------------
1980
1981 --
1982 -- Table structure for table `0_tax_group_items`
1983 --
1984
1985 DROP TABLE IF EXISTS `0_tax_group_items`;
1986 CREATE TABLE IF NOT EXISTS `0_tax_group_items` (
1987   `tax_group_id` int(11) NOT NULL default '0',
1988   `tax_type_id` int(11) NOT NULL default '0',
1989   `tax_shipping` tinyint(1) NOT NULL default '0',
1990   PRIMARY KEY  (`tax_group_id`,`tax_type_id`)
1991 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1992
1993 --
1994 -- Dumping data for table `0_tax_group_items`
1995 --
1996
1997 INSERT INTO `0_tax_group_items` VALUES(1, 1, 1);
1998
1999 -- --------------------------------------------------------
2000
2001 --
2002 -- Table structure for table `0_tax_types`
2003 --
2004
2005 DROP TABLE IF EXISTS `0_tax_types`;
2006 CREATE TABLE IF NOT EXISTS `0_tax_types` (
2007   `id` int(11) NOT NULL auto_increment,
2008   `rate` double NOT NULL default '0',
2009   `sales_gl_code` varchar(15) NOT NULL default '',
2010   `purchasing_gl_code` varchar(15) NOT NULL default '',
2011   `name` varchar(60) NOT NULL default '',
2012   `inactive` tinyint(1) NOT NULL default '0',
2013   PRIMARY KEY  (`id`)
2014 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=2 ;
2015
2016 --
2017 -- Dumping data for table `0_tax_types`
2018 --
2019
2020 INSERT INTO `0_tax_types` VALUES(1, 5, '2150', '2150', 'Tax', 0);
2021
2022 -- --------------------------------------------------------
2023
2024 --
2025 -- Table structure for table `0_trans_tax_details`
2026 --
2027
2028 DROP TABLE IF EXISTS `0_trans_tax_details`;
2029 CREATE TABLE IF NOT EXISTS `0_trans_tax_details` (
2030   `id` int(11) NOT NULL auto_increment,
2031   `trans_type` smallint(6) default NULL,
2032   `trans_no` int(11) default NULL,
2033   `tran_date` date NOT NULL,
2034   `tax_type_id` int(11) NOT NULL default '0',
2035   `rate` double NOT NULL default '0',
2036   `ex_rate` double NOT NULL default '1',
2037   `included_in_price` tinyint(1) NOT NULL default '0',
2038   `net_amount` double NOT NULL default '0',
2039   `amount` double NOT NULL default '0',
2040   `memo` tinytext,
2041   `reg_type` tinyint(1) default NULL,
2042   PRIMARY KEY  (`id`),
2043   KEY `Type_and_Number` (`trans_type`,`trans_no`),
2044   KEY `tran_date` (`tran_date`)
2045 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2046
2047 --
2048 -- Dumping data for table `0_trans_tax_details`
2049 --
2050
2051
2052 -- --------------------------------------------------------
2053
2054 --
2055 -- Table structure for table `0_useronline`
2056 --
2057
2058 DROP TABLE IF EXISTS `0_useronline`;
2059 CREATE TABLE IF NOT EXISTS `0_useronline` (
2060   `id` int(11) NOT NULL auto_increment,
2061   `timestamp` int(15) NOT NULL default '0',
2062   `ip` varchar(40) NOT NULL default '',
2063   `file` varchar(100) NOT NULL default '',
2064   PRIMARY KEY  (`id`),
2065   KEY `timestamp` (`timestamp`),
2066   KEY `ip` (`ip`)
2067 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2068
2069 --
2070 -- Dumping data for table `0_useronline`
2071 --
2072
2073
2074 -- --------------------------------------------------------
2075
2076 --
2077 -- Table structure for table `0_users`
2078 --
2079
2080 DROP TABLE IF EXISTS `0_users`;
2081 CREATE TABLE IF NOT EXISTS `0_users` (
2082   `id` smallint(6) NOT NULL auto_increment,
2083   `user_id` varchar(60) NOT NULL default '',
2084   `password` varchar(100) NOT NULL default '',
2085   `real_name` varchar(100) NOT NULL default '',
2086   `role_id` int(11) NOT NULL default '1',
2087   `phone` varchar(30) NOT NULL default '',
2088   `email` varchar(100) default NULL,
2089   `language` varchar(20) default NULL,
2090   `date_format` tinyint(1) NOT NULL default '0',
2091   `date_sep` tinyint(1) NOT NULL default '0',
2092   `tho_sep` tinyint(1) NOT NULL default '0',
2093   `dec_sep` tinyint(1) NOT NULL default '0',
2094   `theme` varchar(20) NOT NULL default 'default',
2095   `page_size` varchar(20) NOT NULL default 'A4',
2096   `prices_dec` smallint(6) NOT NULL default '2',
2097   `qty_dec` smallint(6) NOT NULL default '2',
2098   `rates_dec` smallint(6) NOT NULL default '4',
2099   `percent_dec` smallint(6) NOT NULL default '1',
2100   `show_gl` tinyint(1) NOT NULL default '1',
2101   `show_codes` tinyint(1) NOT NULL default '0',
2102   `show_hints` tinyint(1) NOT NULL default '0',
2103   `last_visit_date` datetime default NULL,
2104   `query_size` tinyint(1) unsigned NOT NULL default '10',
2105   `graphic_links` tinyint(1) default '1',
2106   `pos` smallint(6) default '1',
2107   `print_profile` varchar(30) NOT NULL default '',
2108   `rep_popup` tinyint(1) default '1',
2109   `sticky_doc_date` tinyint(1) default '0',
2110   `startup_tab` varchar(20) NOT NULL default '',
2111   `transaction_days` smallint(6) NOT NULL default '30',
2112   `save_report_selections` smallint(6) NOT NULL default '0',
2113   `use_date_picker` tinyint(1) NOT NULL default '1',
2114   `def_print_destination` tinyint(1) NOT NULL default '0',
2115   `def_print_orientation` tinyint(1) NOT NULL default '0',
2116   `inactive` tinyint(1) NOT NULL default '0',
2117   PRIMARY KEY  (`id`),
2118   UNIQUE KEY `user_id` (`user_id`)
2119 ) ENGINE=InnoDB DEFAULT CHARSET=utf8  AUTO_INCREMENT=2 ;
2120
2121 --
2122 -- Dumping data for table `0_users`
2123 --
2124
2125 INSERT INTO `0_users` VALUES(1, 'admin', '5f4dcc3b5aa765d61d8327deb882cf99', 'Administrator', 2, '', 'adm@adm.com', 'en_US', 0, 0, 0, 0, 'default', 'Letter', 2, 2, 4, 1, 1, 0, 0, '2008-04-04 12:34:29', 10, 1, 1, '1', 1, 0, 'orders', 30, 0, 1, 0, 0, 0);
2126
2127 -- --------------------------------------------------------
2128
2129 --
2130 -- Table structure for table `0_voided`
2131 --
2132
2133 DROP TABLE IF EXISTS `0_voided`;
2134 CREATE TABLE IF NOT EXISTS `0_voided` (
2135   `type` int(11) NOT NULL default '0',
2136   `id` int(11) NOT NULL default '0',
2137   `date_` date NOT NULL default '0000-00-00',
2138   `memo_` tinytext NOT NULL,
2139   UNIQUE KEY `id` (`type`,`id`)
2140 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2141
2142 --
2143 -- Dumping data for table `0_voided`
2144 --
2145
2146
2147 -- --------------------------------------------------------
2148
2149 --
2150 -- Table structure for table `0_workcentres`
2151 --
2152
2153 DROP TABLE IF EXISTS `0_workcentres`;
2154 CREATE TABLE IF NOT EXISTS `0_workcentres` (
2155   `id` int(11) NOT NULL auto_increment,
2156   `name` char(40) NOT NULL default '',
2157   `description` char(50) NOT NULL default '',
2158   `inactive` tinyint(1) NOT NULL default '0',
2159   PRIMARY KEY  (`id`),
2160   UNIQUE KEY `name` (`name`)
2161 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2162
2163 --
2164 -- Dumping data for table `0_workcentres`
2165 --
2166
2167
2168 -- --------------------------------------------------------
2169
2170 --
2171 -- Table structure for table `0_workorders`
2172 --
2173
2174 DROP TABLE IF EXISTS `0_workorders`;
2175 CREATE TABLE IF NOT EXISTS `0_workorders` (
2176   `id` int(11) NOT NULL auto_increment,
2177   `wo_ref` varchar(60) NOT NULL default '',
2178   `loc_code` varchar(5) NOT NULL default '',
2179   `units_reqd` double NOT NULL default '1',
2180   `stock_id` varchar(20) NOT NULL default '',
2181   `date_` date NOT NULL default '0000-00-00',
2182   `type` tinyint(4) NOT NULL default '0',
2183   `required_by` date NOT NULL default '0000-00-00',
2184   `released_date` date NOT NULL default '0000-00-00',
2185   `units_issued` double NOT NULL default '0',
2186   `closed` tinyint(1) NOT NULL default '0',
2187   `released` tinyint(1) NOT NULL default '0',
2188   `additional_costs` double NOT NULL default '0',
2189   PRIMARY KEY  (`id`),
2190   UNIQUE KEY `wo_ref` (`wo_ref`)
2191 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2192
2193 --
2194 -- Dumping data for table `0_workorders`
2195 --
2196
2197
2198 -- --------------------------------------------------------
2199
2200 --
2201 -- Table structure for table `0_wo_costing`
2202 --
2203
2204 DROP TABLE IF EXISTS `0_wo_costing`;
2205 CREATE TABLE `0_wo_costing` (
2206   `id` int(11) NOT NULL auto_increment,
2207   `workorder_id` int(11) NOT NULL default '0',
2208   `cost_type`   tinyint(1) NOT NULL default '0',
2209   `trans_type` int(11) NOT NULL default '0',
2210   `trans_no` int(11) NOT NULL default '0',
2211   `factor` double NOT NULL default '1',
2212   PRIMARY KEY  (`id`)
2213 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2214
2215 --
2216 -- Dumping data for table `0_wo_costing`
2217 --
2218
2219
2220 -- --------------------------------------------------------
2221
2222 --
2223 -- Table structure for table `0_wo_issues`
2224 --
2225
2226 DROP TABLE IF EXISTS `0_wo_issues`;
2227 CREATE TABLE IF NOT EXISTS `0_wo_issues` (
2228   `issue_no` int(11) NOT NULL auto_increment,
2229   `workorder_id` int(11) NOT NULL default '0',
2230   `reference` varchar(100) default NULL,
2231   `issue_date` date default NULL,
2232   `loc_code` varchar(5) default NULL,
2233   `workcentre_id` int(11) default NULL,
2234   PRIMARY KEY  (`issue_no`),
2235   KEY `workorder_id` (`workorder_id`)
2236 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2237
2238 --
2239 -- Dumping data for table `0_wo_issues`
2240 --
2241
2242
2243 -- --------------------------------------------------------
2244
2245 --
2246 -- Table structure for table `0_wo_issue_items`
2247 --
2248
2249 DROP TABLE IF EXISTS `0_wo_issue_items`;
2250 CREATE TABLE IF NOT EXISTS `0_wo_issue_items` (
2251   `id` int(11) NOT NULL auto_increment,
2252   `stock_id` varchar(40) default NULL,
2253   `issue_id` int(11) default NULL,
2254   `qty_issued` double default NULL,
2255   PRIMARY KEY  (`id`)
2256 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2257
2258 --
2259 -- Dumping data for table `0_wo_issue_items`
2260 --
2261
2262
2263 -- --------------------------------------------------------
2264
2265 --
2266 -- Table structure for table `0_wo_manufacture`
2267 --
2268
2269 DROP TABLE IF EXISTS `0_wo_manufacture`;
2270 CREATE TABLE IF NOT EXISTS `0_wo_manufacture` (
2271   `id` int(11) NOT NULL auto_increment,
2272   `reference` varchar(100) default NULL,
2273   `workorder_id` int(11) NOT NULL default '0',
2274   `quantity` double NOT NULL default '0',
2275   `date_` date NOT NULL default '0000-00-00',
2276   PRIMARY KEY  (`id`),
2277   KEY `workorder_id` (`workorder_id`)
2278 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2279
2280 --
2281 -- Dumping data for table `0_wo_manufacture`
2282 --
2283
2284
2285 -- --------------------------------------------------------
2286
2287 --
2288 -- Table structure for table `0_wo_requirements`
2289 --
2290
2291 DROP TABLE IF EXISTS `0_wo_requirements`;
2292 CREATE TABLE IF NOT EXISTS `0_wo_requirements` (
2293   `id` int(11) NOT NULL auto_increment,
2294   `workorder_id` int(11) NOT NULL default '0',
2295   `stock_id` char(20) NOT NULL default '',
2296   `workcentre` int(11) NOT NULL default '0',
2297   `units_req` double NOT NULL default '1',
2298   `std_cost` double NOT NULL default '0',
2299   `loc_code` char(5) NOT NULL default '',
2300   `units_issued` double NOT NULL default '0',
2301   PRIMARY KEY  (`id`),
2302   KEY `workorder_id` (`workorder_id`)
2303 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2304
2305 --
2306 -- Dumping data for table `0_wo_requirements`
2307 --
2308