Skip to content
Snippets Groups Projects
Commit d54d930b authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

rel #12993 : provide patch 207 and 208 replacement as patch 209 as already made its way to master

parent 86944567
Branches
Tags
2 merge requests!321Dev#12992 custom fields,!319Dev#12992 custom fields
<?php
// Constantes
error_reporting(E_ERROR | E_PARSE);
define("VERSION_COSMOGRAMME","6.53");
define("PATCH_LEVEL","210");
define("VERSION_COSMOGRAMME","6.54");
define("PATCH_LEVEL","211");
define("APPLI","cosmogramme");
define("COSMOPATH", "/var/www/html/vhosts/opac2/www/htdocs");
......
CREATE TABLE IF NOT EXISTS custom_field_meta (
id int( 11 ) NOT NULL AUTO_INCREMENT ,
label varchar( 100) default NULL,
field_type varchar( 100 ) default NULL,
options_list varchar( 250 ) default NULL,
PRIMARY KEY ( id )
) ENGINE = MYISAM DEFAULT CHARSET = utf8;
CREATE TABLE IF NOT EXISTS custom_field (
id int( 11 ) NOT NULL AUTO_INCREMENT ,
meta_id int( 11 ) NOT NULL default 0,
priority int( 11 ) NOT NULL default 0,
model varchar( 100 ) default NULL,
PRIMARY KEY ( id )
) ENGINE = MYISAM DEFAULT CHARSET = utf8;
CREATE TABLE IF NOT EXISTS custom_field_values (
id int( 11 ) NOT NULL AUTO_INCREMENT,
custom_field_id int( 11 ) NOT NULL,
model_id int( 11 ) NOT NULL,
`value` text default NULL,
PRIMARY KEY ( id ),
KEY `custom_field_id` (`custom_field_id`),
KEY `model_id` (`model_id`)
) ENGINE = MYISAM DEFAULT CHARSET = utf8;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment