Skip to content

Commit

Permalink
feat: change ps version
Browse files Browse the repository at this point in the history
  • Loading branch information
PoulainMaxime committed Feb 26, 2025
1 parent 4daf9be commit 104f88b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions upgrade/sql/9.0.1.sql → upgrade/sql/9.1.0.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
SET
SESSION sql_mode = '';

SET
NAMES 'utf8mb4';
SET SESSION sql_mode = '';
SET NAMES 'utf8mb4';

/* Insert new shipment table */
/* https://github.com/PrestaShop/PrestaShop/pull/38046 */
Expand All @@ -20,12 +17,12 @@ CREATE TABLE IF NOT EXISTS `PREFIX_shipment` (
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id_shipment`),
) ENGINE = ENGINE_TYPE DEFAULT CHARSET = utf8mb4;
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8mb4;

CREATE TABLE IF NOT EXISTS `PREFIX_shipment_product` (
`shipment_product_id` int(10) NOT NULL,
`shipment_id` int(10) NOT NULL,
`order_detail_id` int(10) NOT NULL,
`quantity` int(10) DEFAULT NULL,
PRIMARY KEY (shipment_id),
) ENGINE = ENGINE_TYPE DEFAULT CHARSET = utf8mb4;
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8mb4;

0 comments on commit 104f88b

Please sign in to comment.