/[cvs]/nfo/site/etc/db/schema/nfo.contenttypes.sql
ViewVC logotype

Annotation of /nfo/site/etc/db/schema/nfo.contenttypes.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Sat Sep 4 18:01:34 2004 UTC (20 years ago) by rabit
Branch: MAIN
CVS Tags: HEAD
Initial commit: SQL db schema for "contenttypes" table.

1 rabit 1.1 #-------------------------------------------------------------------------------
2     #-- www.netfrag.org
3     #-- DB schema sql.
4     #-------------------------------------------------------------------------------
5     #-- rabit, 19:57 04.09.2004
6     #-- $Id$
7     #-------------------------------------------------------------------------------
8    
9     #---------------------------------------
10     #-- Data base: "nfo"
11     #-- Table: "contenttypes"
12     #---------------------------------------
13    
14     DROP TABLE IF EXISTS contenttypes;
15    
16     CREATE TABLE contenttypes (
17     id int(10) unsigned NOT NULL auto_increment,
18     name varchar(32) NOT NULL default '',
19     PRIMARY KEY (id),
20     UNIQUE KEY name (name)
21     )
22     TYPE=MyISAM
23     COMMENT='NFO content types';

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed