2011-02-14 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* pandoradb.sql extras/pandoradb_migrate_v3.2_to_v4.0.sql: Added "block_size" and "flash_chart" columns on tusuario table. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3824 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
ebc6668f9b
commit
9115d5c295
|
@ -1,3 +1,9 @@
|
||||||
|
2011-02-14 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
|
* pandoradb.sql
|
||||||
|
extras/pandoradb_migrate_v3.2_to_v4.0.sql: Added "block_size" and
|
||||||
|
"flash_chart" columns on tusuario table.
|
||||||
|
|
||||||
2011-02-14 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
2011-02-14 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* include/functions_config.php: Loads relative_path variable in user
|
* include/functions_config.php: Loads relative_path variable in user
|
||||||
|
|
|
@ -32,3 +32,10 @@ ALTER TABLE `tnetwork_component` ADD COLUMN `post_process` double(18,13) default
|
||||||
-- Table `treport_content`
|
-- Table `treport_content`
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
ALTER TABLE treport_content ADD only_display_wrong tinyint(1) unsigned DEFAULT 0 NOT NULL;
|
ALTER TABLE treport_content ADD only_display_wrong tinyint(1) unsigned DEFAULT 0 NOT NULL;
|
||||||
|
|
||||||
|
-- -----------------------------------------------------
|
||||||
|
-- Table `tusuario`
|
||||||
|
-- -----------------------------------------------------
|
||||||
|
ALTER TABLE `tusuario` ADD COLUMN `block_size` int(4) NOT NULL DEFAULT 20;
|
||||||
|
ALTER TABLE `tusuario` ADD COLUMN `flash_chart` int(4) NOT NULL DEFAULT 1;
|
||||||
|
|
||||||
|
|
|
@ -720,6 +720,8 @@ CREATE TABLE IF NOT EXISTS `tusuario` (
|
||||||
`is_admin` tinyint(1) unsigned NOT NULL default '0',
|
`is_admin` tinyint(1) unsigned NOT NULL default '0',
|
||||||
`language` varchar(10) default NULL,
|
`language` varchar(10) default NULL,
|
||||||
`timezone` varchar(50) default '',
|
`timezone` varchar(50) default '',
|
||||||
|
`block_size` int(4) NOT NULL DEFAULT 20,
|
||||||
|
`flash_chart` int(4) NOT NULL DEFAULT 1,
|
||||||
UNIQUE KEY `id_user` (`id_user`)
|
UNIQUE KEY `id_user` (`id_user`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue