[11/06/2024] Les premières modifs + installation de quelques modules indispensables

This commit is contained in:
2024-06-11 14:57:59 +02:00
parent 5ac5653ae5
commit 77cf2c7cc6
1626 changed files with 171457 additions and 131 deletions

View File

@@ -0,0 +1,58 @@
# 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;
-- ---------------------------------------------------------------------
-- better_seo
-- ---------------------------------------------------------------------
DROP TABLE IF EXISTS `better_seo`;
CREATE TABLE `better_seo`
(
`id` INTEGER NOT NULL AUTO_INCREMENT,
`object_id` INTEGER NOT NULL,
`object_type` VARCHAR(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
-- ---------------------------------------------------------------------
-- better_seo_i18n
-- ---------------------------------------------------------------------
DROP TABLE IF EXISTS `better_seo_i18n`;
CREATE TABLE `better_seo_i18n`
(
`id` INTEGER NOT NULL,
`locale` VARCHAR(5) DEFAULT 'en_US' NOT NULL,
`noindex` TINYINT(4) DEFAULT 0 NOT NULL,
`nofollow` TINYINT(4) DEFAULT 0 NOT NULL,
`canonical_field` TEXT,
`h1` TEXT,
`mesh_text_1` TEXT,
`mesh_url_1` TEXT,
`mesh_text_2` TEXT,
`mesh_url_2` TEXT,
`mesh_text_3` TEXT,
`mesh_url_3` TEXT,
`mesh_text_4` TEXT,
`mesh_url_4` TEXT,
`mesh_text_5` TEXT,
`mesh_url_5` TEXT,
`mesh_1` TEXT,
`mesh_2` TEXT,
`mesh_3` TEXT,
`mesh_4` TEXT,
`mesh_5` TEXT,
`json_data` TEXT,
PRIMARY KEY (`id`,`locale`),
CONSTRAINT `better_seo_i18n_FK_1`
FOREIGN KEY (`id`)
REFERENCES `better_seo` (`id`)
ON DELETE CASCADE
) ENGINE=InnoDB;
# This restores the fkey checks, after having unset them earlier
SET FOREIGN_KEY_CHECKS = 1;