Forum OpenACS Q&A: Categories

Collapse
10: Categories (response to 1)
Posted by Hans Gaasenbeek on
Thank you for this suggestion! Sadly, Categories IS installed... Maybe reinstalling is an option? It says - when I want to delete it -

WARNING

The following packages depend on package categories that you are about to delete:
project-manager
lars-blogger

Proceeding with the deletion of the package may render the system in a broken state.

Deleting a package removes all record of it from the APM's database.

We recommend sourcing all of the drop scripts for the package. Be aware that this will erase all data associated with this package from the database.  sql/postgresql/categories-drop.sql

Collapse
11: Re: Categories (response to 10)
Posted by Jeff Davis on
If this is on postgres could you try:
 \dt categ*
which on my install shows:
                   List of relations
 Schema |            Name            | Type  |  Owner  
--------+----------------------------+-------+---------
 public | categories                 | table | nsadmin
 public | category_links             | table | nsadmin
 public | category_object_map        | table | nsadmin
 public | category_search            | table | nsadmin
 public | category_search_index      | table | nsadmin
 public | category_search_results    | table | nsadmin
 public | category_synonym_index     | table | nsadmin
 public | category_synonyms          | table | nsadmin
 public | category_temp              | table | nsadmin
 public | category_translations      | table | nsadmin
 public | category_tree_map          | table | nsadmin
 public | category_tree_translations | table | nsadmin
 public | category_trees             | table | nsadmin
(13 rows)