/[drupal]/contributions/modules/contento/contento.mysql
ViewVC logotype

Contents of /contributions/modules/contento/contento.mysql

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Wed Jun 7 16:19:21 2006 UTC (3 years, 5 months ago) by jareyero
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-4-7
New module for simple content types
1 CREATE TABLE `content_type` (
2 `name` varchar(32) NOT NULL default '',
3 `base` varchar(32) NOT NULL default '',
4 `label` varchar(255) NOT NULL default '',
5 `description` mediumtext NOT NULL,
6 `help` mediumtext NOT NULL,
7 `has_title` tinyint(3) unsigned NOT NULL default '0',
8 `title_label` varchar(255) NOT NULL default '',
9 `has_body` tinyint(3) unsigned NOT NULL default '0',
10 `body_label` varchar(255) NOT NULL default '',
11 PRIMARY KEY (`name`)
12 );

  ViewVC Help
Powered by ViewVC 1.1.2