Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/struct
In directory usw-pr-cvs1:/tmp/cvs-serv7096/struct
Added Files:
content_type.sql
Log Message:
added data structure, startup data, lookup table action, object
definition and simple class method for keeping track of content types
--- NEW FILE: content_type.sql ---
CREATE TABLE content_type (
content_type_id %%INCREMENT%%,
mime_type varchar(40) not null,
extensions varchar(20) not null,
description varchar(100) null,
primary key ( content_type_id )
)
|