diff --git a/app/Model/AppModel.php b/app/Model/AppModel.php index abae3fb47..a2576bc85 100644 --- a/app/Model/AppModel.php +++ b/app/Model/AppModel.php @@ -61,7 +61,7 @@ class AppModel extends Model { public $db_changes = array( 1 => false, 2 => false, 3 => false, 4 => true, 5 => false, 6 => false, - 7 => false, 8 => false + 7 => false, 8 => false, 9 => false ); function afterSave($created, $options = array()) { @@ -928,6 +928,10 @@ class AppModel extends Model { INDEX `noticelist_id` (`noticelist_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;'; break; + case 9: + $sqlArray[] = 'ALTER TABLE galaxies ADD namespace varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT "misp";'; + $indexArray[] = array('galaxies', 'namespace'); + break; case 'fixNonEmptySharingGroupID': $sqlArray[] = 'UPDATE `events` SET `sharing_group_id` = 0 WHERE `distribution` != 4;'; $sqlArray[] = 'UPDATE `attributes` SET `sharing_group_id` = 0 WHERE `distribution` != 4;'; diff --git a/app/View/Galaxies/index.ctp b/app/View/Galaxies/index.ctp index cfcc62063..56a97ed5b 100644 --- a/app/View/Galaxies/index.ctp +++ b/app/View/Galaxies/index.ctp @@ -22,6 +22,7 @@ Paginator->sort('icon');?> Paginator->sort('name');?> Paginator->sort('version');?> + Paginator->sort('namespace');?> Paginator->sort('description');?> Paginator->sort('description');?>     +     Html->link('', array('action' => 'view', $item['Galaxy']['id']), array('class' => 'icon-list-alt', 'title' => 'View'));?> diff --git a/app/View/Galaxies/view.ctp b/app/View/Galaxies/view.ctp index 2d8f8dde5..f005097a8 100644 --- a/app/View/Galaxies/view.ctp +++ b/app/View/Galaxies/view.ctp @@ -13,6 +13,8 @@
+
+