PHP Classes

File: install/sql/update.sql

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis CMS Prospects   install/sql/update.sql   Download  
File: install/sql/update.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Melis CMS Prospects
Melis CMS module to track business prospects
Author: By
Last change:
Date: 1 year ago
Size: 1,186 bytes
 

Contents

Class file image Download
-- ----------------------------------------------------- -- Table `melis_cms_prospects_theme_items` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `melis_cms_prospects_theme_items` ( `pros_theme_item_id` INT NOT NULL AUTO_INCREMENT, `pros_theme_item_code` VARCHAR(45) NOT NULL, `pros_theme_item_text` VARCHAR(80) NULL, `pros_theme_item_lang_id` INT NOT NULL, `pros_theme_id` INT NOT NULL, PRIMARY KEY (`pros_theme_item_id`), INDEX `fk_pros_subj_id_idx` (`pros_theme_id` ASC)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `melis_cms_prospects_themes` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `melis_cms_prospects_themes` ( `pros_theme_id` INT NOT NULL AUTO_INCREMENT, `pros_theme_code` VARCHAR(45) NOT NULL, `pros_theme_name` VARCHAR(45) NOT NULL, PRIMARY KEY (`pros_theme_id`)) ENGINE = InnoDB; ALTER TABLE `melis_cms_prospects_theme_items` DROP `pros_theme_item_code`; ALTER TABLE `melis_cms_prospects_themes` DROP `pros_theme_code`; ALTER TABLE `melis_cms_prospects_theme_items` DROP `pros_theme_item_text`, DROP `pros_theme_item_lang_id`;