2012-10-09 Hirofumi Kosaka <kosaka@rworks.jp>

* pandoradb.sql: cleaned code style, to be acceptable by
	Clustrix's SQL parser, for examples.  Merged from branch 4.x.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7054 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
hkosaka 2012-10-09 02:02:25 +00:00
parent 19b1b1aac5
commit b9635da465
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2012-10-09 Hirofumi Kosaka <kosaka@rworks.jp>
* pandoradb.sql: cleaned code style, to be acceptable by
Clustrix's SQL parser, for examples. Merged from branch 4.x.
2012-10-08 Ramon Novoa <rnovoa@artica.es>
* include/functions_graph.php,

View File

@ -544,7 +544,7 @@ CREATE TABLE IF NOT EXISTS `tevento` (
CREATE TABLE IF NOT EXISTS `tgrupo` (
`id_grupo` mediumint(4) unsigned NOT NULL auto_increment,
`nombre` varchar(100) NOT NULL default '',
`icon` varchar(50) default NULL default 'world',
`icon` varchar(50) default 'world',
`parent` mediumint(4) unsigned NOT NULL default '0',
`propagate` tinyint(1) unsigned NOT NULL default '0',
`disabled` tinyint(3) unsigned NOT NULL default '0',
@ -582,7 +582,7 @@ CREATE TABLE IF NOT EXISTS `tincidencia` (
-- -----------------------------------------------------
-- Table `tlanguage`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS`tlanguage` (
CREATE TABLE IF NOT EXISTS `tlanguage` (
`id_language` varchar(6) NOT NULL default '',
`name` varchar(100) NOT NULL default '',
PRIMARY KEY (`id_language`)