[11/06/2024] Les premières modifs + installation de quelques modules indispensables
This commit is contained in:
57
domokits/local/modules/TheliaLibrary/Config/update/1.1.2.sql
Normal file
57
domokits/local/modules/TheliaLibrary/Config/update/1.1.2.sql
Normal file
@@ -0,0 +1,57 @@
|
||||
|
||||
# This is a fix for InnoDB in MySQL >= 4.1.x
|
||||
# It "suspends judgement" for fkey relationships until are tables are set.
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ---------------------------------------------------------------------
|
||||
-- library_tag_i18n
|
||||
-- ---------------------------------------------------------------------
|
||||
|
||||
DROP TABLE IF EXISTS `library_tag`;
|
||||
|
||||
CREATE TABLE `library_tag`
|
||||
(
|
||||
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
||||
`color_code` VARCHAR(255),
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
DROP TABLE IF EXISTS `library_image_tag`;
|
||||
|
||||
CREATE TABLE `library_image_tag`
|
||||
(
|
||||
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
||||
`image_id` INTEGER,
|
||||
`tag_id` INTEGER,
|
||||
PRIMARY KEY (`id`),
|
||||
INDEX `fi_library_image_tag_image_id` (`image_id`),
|
||||
INDEX `fi_library_image_tag_tag_id` (`tag_id`),
|
||||
CONSTRAINT `fk_library_image_tag_image_id`
|
||||
FOREIGN KEY (`image_id`)
|
||||
REFERENCES `library_image` (`id`)
|
||||
ON UPDATE RESTRICT
|
||||
ON DELETE CASCADE,
|
||||
CONSTRAINT `fk_library_image_tag_tag_id`
|
||||
FOREIGN KEY (`tag_id`)
|
||||
REFERENCES `library_tag` (`id`)
|
||||
ON UPDATE RESTRICT
|
||||
ON DELETE CASCADE
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
DROP TABLE IF EXISTS `library_tag_i18n`;
|
||||
|
||||
CREATE TABLE `library_tag_i18n`
|
||||
(
|
||||
`id` INTEGER NOT NULL,
|
||||
`locale` VARCHAR(5) DEFAULT 'en_US' NOT NULL,
|
||||
`title` VARCHAR(255),
|
||||
PRIMARY KEY (`id`,`locale`),
|
||||
CONSTRAINT `library_tag_i18n_fk_b8e890`
|
||||
FOREIGN KEY (`id`)
|
||||
REFERENCES `library_tag` (`id`)
|
||||
ON DELETE CASCADE
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
|
||||
# This restores the fkey checks, after having unset them earlier
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
Reference in New Issue
Block a user