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

forgotten patch

parent dbba091a
Branches
Tags
5 merge requests!2767Hotline,!2742Dev#64573 amelioration de la charte modele,!2724Dev#64573 amelioration de la charte modele,!2718Dev#64573 amelioration de la charte modele,!2679Dev#64573 amelioration de la charte modele
Pipeline #4294 failed with stage
in 36 minutes and 32 seconds
<?php
try {
$adapter = Zend_Db_Table_Abstract::getDefaultAdapter();
$adapter->query('CREATE TABLE if not exists `template_settings` ( '
. 'id int(11) unsigned not null auto_increment,'
. 'template varchar(255) not null,'
. 'settings text not null,'
. 'primary key (id),'
. 'key (`template`)'
. ') engine=MyISAM default charset=utf8');
$adapter
->query('alter table bib_admin_profil add column template varchar(255) not null');
$adapter
->query('alter table bib_admin_profil add key template(template)');
} catch(Exception $e) {}
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