Forum OpenACS Development: Response to Relation 'cr_mime_types' does not exist

Collapse
Posted by Dan Wickstrom on
I'm not sure if you're using oracle or postgresql, but you must have had a problem loading the core data-model:

Oracle:



Connected to:
Oracle8i Enterprise Edition Release 8.1.6.1.0 - Production
With the Partitioning option
JServer Release 8.1.6.0.0 - Production
 
SQL> describe cr_mime_types
 Name                                      Null?    Type
 ----------------------------------------- -------- ----------------------------
 LABEL                                              VARCHAR2(200)
 MIME_TYPE                                 NOT NULL VARCHAR2(200)
 FILE_EXTENSION                                     VARCHAR2(200)
                                                                                                                                       

postgresql:

openacs4=# d cr_mime_types
               Table "cr_mime_types"
   Attribute    |          Type          | Modifier
----------------+------------------------+----------
 label          | character varying(200) |
 mime_type      | character varying(200) | not null
 file_extension | character varying(200) |
Index: cr_mime_types_pk


I'm assuming that cr_mimi_types was just a typo in your post.