summaryrefslogtreecommitdiff
path: root/modules/upload/upload.schema
diff options
context:
space:
mode:
Diffstat (limited to 'modules/upload/upload.schema')
-rw-r--r--modules/upload/upload.schema19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/upload/upload.schema b/modules/upload/upload.schema
deleted file mode 100644
index 09843b58f..000000000
--- a/modules/upload/upload.schema
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-// $Id$
-
-function upload_schema() {
- $schema['upload'] = array(
- 'fields' => array(
- 'fid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
- 'nid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
- 'vid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
- 'description' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
- 'list' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'size' => 'tiny')
- ),
- 'primary key' => array('fid', 'vid'),
- 'indexes' => array('vid' => array('vid'), 'nid' => array('nid')),
- );
-
- return $schema;
-}
-