Skip to content
Snippets Groups Projects
Commit 55124424 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

dev #22654 add sql patch for album_item

parent e3fe69a2
Branches
Tags
3 merge requests!896Master,!792Dev#22657 pnb display user account,!783Dev#22657 pnb display user account
......@@ -2,7 +2,7 @@
// Constantes
error_reporting(E_ERROR | E_PARSE);
define("PATCH_LEVEL","241");
define("PATCH_LEVEL","242");
define("APPLI","cosmogramme");
define("COSMOPATH", "/var/www/html/vhosts/opac2/www/htdocs");
......
<?php
Zend_Registry::get('sql')->query('CREATE TABLE `album_item` ( '
. 'id int(11) unsigned not null auto_increment,'
. 'album_id int(11) unsigned not null,'
. 'loan_count int(11) not null,'
. 'quantity int(11) not null,'
. 'primary key (id),'
. 'key (`album_id`)'
. ') engine=MyISAM default charset=utf8');
?>
\ No newline at end of file
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