-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from thelia-modules/feature/stop_json
Feature/stop json
- Loading branch information
Showing
18 changed files
with
3,022 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
SET FOREIGN_KEY_CHECKS = 0; | ||
-- --------------------------------------------------------------------- | ||
-- dpdpickup_price | ||
-- --------------------------------------------------------------------- | ||
|
||
DROP TABLE IF EXISTS `dpdpickup_price`; | ||
|
||
CREATE TABLE `dpdpickup_price` | ||
( | ||
`id` INTEGER NOT NULL AUTO_INCREMENT, | ||
`area_id` INTEGER NOT NULL, | ||
`weight_max` FLOAT NOT NULL, | ||
`price` DECIMAL(16,6) DEFAULT 0.000000, | ||
`created_at` DATETIME, | ||
`updated_at` DATETIME, | ||
PRIMARY KEY (`id`), | ||
INDEX `FI_dpdpickup_price_area_id` (`area_id`), | ||
CONSTRAINT `fk_dpdpickup_price_area_id` | ||
FOREIGN KEY (`area_id`) | ||
REFERENCES `area` (`id`) | ||
ON UPDATE RESTRICT | ||
ON DELETE RESTRICT | ||
) ENGINE=InnoDB; | ||
|
||
SET FOREIGN_KEY_CHECKS = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.