Skip to content

Commit

Permalink
Update upgrade_slims8.3_akasia.sql.php
Browse files Browse the repository at this point in the history
  • Loading branch information
heroesoebekti authored Sep 20, 2017
1 parent 7dc0758 commit 08ab295
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions install/sql_php_upgrade/upgrade_slims8.3_akasia.sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@
$sql['create'][] = "CREATE TABLE `mst_servers` (
`server_id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`uri` text COLLATE utf8_unicode_ci NOT NULL,
`uri` text COLLATE utf8_unicode_ci NOT NULL,
`server_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1 - p2p server; 2 - z3950; 3 - z3950 SRU',
`input_date` datetime NOT NULL,
`last_update` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;";
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;";

/*
--
Expand All @@ -44,4 +45,4 @@
-- Set new field for 'scope' in 'mst_voc_ctrl'
--
*/
$sql['alter'][] = "ALTER TABLE `mst_voc_ctrl` ADD `scope` TEXT NULL DEFAULT NULL; ";
$sql['alter'][] = "ALTER TABLE `mst_voc_ctrl` ADD `scope` TEXT NULL DEFAULT NULL; ";

0 comments on commit 08ab295

Please sign in to comment.