/[drupal]/contributions/modules/freelinking/freelinking.schema
ViewVC logotype

Contents of /contributions/modules/freelinking/freelinking.schema

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


Revision 1.1 - (show annotations) (download)
Thu Oct 4 15:19:53 2007 UTC (2 years, 1 month ago) by eafarris
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1, DRUPAL-6--1-2, DRUPAL-6--1-3, HEAD
Branch point for: DRUPAL-6--1
Compatibility with Drupal 6.x
1 <?php
2 /* freelinking.schema
3 */
4
5 function freelinking_schema() {
6 $schema['freelinking'] = array(
7 'fields' => array(
8 'hash' => array( 'type' => 'varchar', 'length' => 32, 'not null' => TRUE,),
9 'phrase' => array( 'type' => 'varchar', 'length' => 200, 'not null' => TRUE,),
10 'path' => array( 'type' => 'varchar', 'length' => 200, 'not null' => TRUE,),
11 'args' => array( 'type' => 'varchar', 'length' => 200, 'not null' => TRUE,),
12 ),
13 'primary key' => array('hash'),
14 );
15 return $schema;
16 }
17
18
19
20 // vim: tw=300 nowrap syn=php

  ViewVC Help
Powered by ViewVC 1.1.2