]> git.mxchange.org Git - pizzaservice-ejb.git/commitdiff
updated jars + install.sql (no utf8mb4)
authorRoland Haeder <roland@mxchange.org>
Wed, 23 Sep 2015 12:51:48 +0000 (14:51 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 23 Sep 2015 12:51:48 +0000 (14:51 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

PizzaService-ejb/lib/jcore.jar
PizzaService-ejb/lib/jcoreee.jar
PizzaService-ejb/lib/jshop-core.jar
PizzaService-ejb/lib/jshop-ee-lib.jar
install/install.sql

index 12190beef63bed67f80a91b64eeee71aede608fc..e17de0c88e23d89b1f0953bcc4c3f8114d699b84 100644 (file)
Binary files a/PizzaService-ejb/lib/jcore.jar and b/PizzaService-ejb/lib/jcore.jar differ
index 93d401de39c53a2d93aaa31e42cad7b2ccac7bb9..ba35a455448e8374b4f25033d5ba05f5b6b7d3f1 100644 (file)
Binary files a/PizzaService-ejb/lib/jcoreee.jar and b/PizzaService-ejb/lib/jcoreee.jar differ
index f1aab858f0564debc187991ee4374bf956001f0a..bbfc4d47166a7908ed871f04030b505436fcc771 100644 (file)
Binary files a/PizzaService-ejb/lib/jshop-core.jar and b/PizzaService-ejb/lib/jshop-core.jar differ
index 6506266fda2670bff7f67138d709ff8339038a25..46fa0d78af40d07064c0344f6a70eef270de8117 100644 (file)
Binary files a/PizzaService-ejb/lib/jshop-ee-lib.jar and b/PizzaService-ejb/lib/jshop-ee-lib.jar differ
index a5f3b141480f7ea9fdfc9f40900b1b5ffa7651d3..2f14be7fc9899cf9f581134fe16360d49cdfbe03 100644 (file)
@@ -1,12 +1,16 @@
-CREATE TABLE IF NOT EXISTS `category` (
+SET FOREIGN_KEY_CHECKS=0;
+SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
+SET time_zone = "+00:00";
+
+CREATE TABLE `category` (
        `id` bigint(20) unsigned NOT NULL COMMENT 'Primary key',
-       `title` varchar(255) NOT NULL COMMENT 'Category title',
+       `title` varchar(100) NOT NULL COMMENT 'Category title',
        `parent` bigint(20) unsigned DEFAULT NULL COMMENT 'Parent category',
        PRIMARY KEY (`id`),
        INDEX `parent` (`parent`)
-) ENGINE=InnoDBDEFAULT CHARSET=utf8mb4 COMMENT='Categories' ;
+) ENGINE=InnoDBDEFAULT CHARSET=utf8 COMMENT='Categories';
 
-CREATE TABLE IF NOT EXISTS `contacts` (
+CREATE TABLE `contacts` (
        `id` bigint(20) unsigned NOT NULL COMMENT 'Primary key',
        `own_contact` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether own contact',
        `gender` varchar(10) NOT NULL DEFAULT 'UNKNOWN' COMMENT 'Gender',
@@ -25,57 +29,57 @@ CREATE TABLE IF NOT EXISTS `contacts` (
        `birthday` date DEFAULT NULL COMMENT 'Birth day',
        `comment` tinytext NULL DEFAULT NULL COMMENT 'Comment',
        `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Entry created',
-       `updated` timestamp NULL DEFAULT NULL COMMENT 'Entry updated',
+       `updated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT 'Updated entry',
        PRIMARY KEY (`id`)
-) ENGINE=InnoDBDEFAULT CHARSET=utf8mb4 COMMENT='Contacts data' ;
+) ENGINE=InnoDBDEFAULT CHARSET=utf8 COMMENT='Contacts data';
 
-CREATE TABLE IF NOT EXISTS `customer` (
-       `id` bigint(20) unsigned NOT NULL COMMENT 'Primay key',
+CREATE TABLE `customer` (
+       `id` bigint(20) unsigned NOT NULL COMMENT 'Primary key',
        `customer_contact_id` bigint(20) unsigned NOT NULL COMMENT 'Table reference on "contact"',
-       `customer_number` varchar(20) COLLATE 'utf8mb4_general_ci' NOT NULL COMMENT 'Customer number',
-       `customer_password_hash` varchar(255) COLLATE 'utf8mb4_general_ci' NULL DEFAULT NULL COMMENT 'Password hash',
-       `customer_confirm_key` varchar(50) COLLATE 'utf8mb4_general_ci' NULL DEFAULT NULL COMMENT 'Email confirmation key',
-       `customer_status` enum('UNCONFIRMED','CONFIRMED','LOCKED') COLLATE 'utf8mb4_general_ci' NOT NULL DEFAULT 'UNCONFIRMED' COMMENT 'Account status',
+       `customer_number` varchar(20) NOT NULL COMMENT 'Customer number',
+       `customer_password_hash` varchar(255) DEFAULT NULL COMMENT 'Password hash',
+       `customer_confirm_key` varchar(50) DEFAULT NULL COMMENT 'Email confirmation key',
+       `customer_status` enum('UNCONFIRMED','CONFIRMED','LOCKED') NOT NULL DEFAULT 'UNCONFIRMED' COMMENT 'Account status',
        `customer_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Account creation',
-       `customer_locked` datetime NULL DEFAULT NULL COMMENT 'Last locked timestamp',
+       `customer_locked` timestamp NULL DEFAULT NULL COMMENT 'Last locked timestamp',
        PRIMARY KEY (`id`),
        UNIQUE (`customer_confirm_key`),
        UNIQUE (`customer_number`),
        INDEX (`customer_contact_id`)
-) COMMENT='Customer data' ENGINE='InnoDB' COLLATE 'utf8mb4_general_ci';
+) ENGINE=InnoDBDEFAULT CHARSET=utf8 COMMENT='Customer data';
 
-CREATE TABLE IF NOT EXISTS `products` (
+CREATE TABLE `ordered_items` (
        `id` bigint(20) unsigned NOT NULL COMMENT 'Primary key',
-       `category` bigint(20) unsigned DEFAULT NULL COMMENT 'Category id',
-       `title` varchar(255) NOT NULL COMMENT 'Title of product',
-       `price` decimal(20,2) unsigned NOT NULL COMMENT 'Product price',
-       `available` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether product is available',
-       PRIMARY KEY (`id`),
-       INDEX `category` (`category`)
-) ENGINE=InnoDBDEFAULT CHARSET=utf8mb4 COMMENT='Products' ;
+       `order_id` bigint(20) unsigned NOT NULL COMMENT 'Table reference orders',
+       `order_status` enum('UNCONFIRMED','CONFIRMED','DELIVERED','CANCELED') NOT NULL DEFAULT 'UNCONFIRMED' COMMENT 'Order status',
+       `product_id` bigint(20) unsigned NOT NULL COMMENT 'Table reference products',
+       `item_type` VARCHAR(20) NOT NULL COMMENT 'Item type',
+       `amount` bigint(20) unsigned NOT NULL COMMENT 'Ordered amount',
+       `added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Record inserted',
+       PRIMARY KEY (`id),
+       INDEX (`order_id`),
+       INDEX (`product_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Ordered items';
 
-CREATE TABLE IF NOT EXISTS `orders` (
+CREATE TABLE `orders` (
        `id` bigint(20) unsigned NOT NULL COMMENT 'Primary key',
        `customer_id` bigint(20) unsigned NOT NULL COMMENT 'Table reference customer',
-       `access_key` varchar(50) CHARACTER SET utf8mb4 DEFAULT NULL COMMENT 'Access key to receipt',
+       `access_key` varchar(100) NULL DEFAULT NULL COMMENT 'Access key to receipt',
        `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Order created',
        PRIMARY KEY (`id`),
-       UNIQUE KEY `access_key` (`access_key`),
-       INDEX `customer_id` (`customer_id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Customer orders';
+       INDEX (`customer_id`),
+       UNIQUE (`access_key`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer orders';
 
-CREATE TABLE IF NOT EXISTS `ordered_items` (
+CREATE TABLE `products` (
        `id` bigint(20) unsigned NOT NULL COMMENT 'Primary key',
-       `order_id` bigint(20) unsigned DEFAULT NULL COMMENT 'Table reference orders',
-       `order_status` enum('UNCONFIRMED','CONFIRMED','DELIVERED','CANCELED') NOT NULL DEFAULT 'UNCONFIRMED' COMMENT 'Order status',
-       `product_id` bigint(20) unsigned NOT NULL COMMENT 'Table reference products',
-       `amount` bigint(20) unsigned NOT NULL COMMENT 'Ordered amount',
-       `added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Record inserted',
-       PRIMARY KEY (`id`),
-       INDEX `order_id` (`order_id`),
-       INDEX `product_id` (`product_id`),
-       INDEX `customer_product` (`customer_id`,`product_id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Customer orders';
+       `category` bigint(20) unsigned DEFAULT NULL COMMENT 'Category id',
+       `title` varchar(100) NOT NULL COMMENT 'Title of product',
+       `price` decimal(20,2) unsigned NOT NULL COMMENT 'Product price',
+       `available` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Whether product is available',
+       PRIMARY (`id`),
+       INDEX (`category`)
+) ENGINE=InnoDBDEFAULT CHARSET=utf8 COMMENT='Products';
 
 ALTER TABLE `category`
 MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key';
@@ -86,23 +90,28 @@ MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key';
 ALTER TABLE `customer`
 MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key';
 
-ALTER TABLE `products`
+ALTER TABLE `ordered_items`
 MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key';
 
 ALTER TABLE `orders`
 MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key';
 
-ALTER TABLE `ordered_items`
+ALTER TABLE `products`
 MODIFY `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key';
 
 ALTER TABLE `category`
-ADD FOREIGN KEY (`parent`) REFERENCES `category` (`id`) ON DELETE SET NULL;
+ADD CONSTRAINT `category_ibfk_1` FOREIGN KEY (`parent`) REFERENCES `category` (`id`) ON DELETE SET NULL ON UPDATE NO ACTION;
 
 ALTER TABLE `customer`
-ADD FOREIGN KEY (`customer_contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE;
+ADD CONSTRAINT `customer_ibfk_1` FOREIGN KEY (`customer_contact_id`) REFERENCES `contacts` (`id`) ON DELETE CASCADE;
+
+ALTER TABLE `ordered_items`
+ADD CONSTRAINT `ordered_items_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE;
+
+ALTER TABLE `orders`
+ADD CONSTRAINT `orders_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`id`);
 
 ALTER TABLE `products`
-ADD FOREIGN KEY (`category`) REFERENCES `category` (`id`) ON DELETE SET NULL;
+ADD CONSTRAINT `products_ibfk_1` FOREIGN KEY (`category`) REFERENCES `category` (`id`) ON DELETE SET NULL ON UPDATE NO ACTION;
 
-ALTER TABLE `ordered_items`
-ADD CONSTRAINT `orders_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE;
+SET FOREIGN_KEY_CHECKS=1;