aboutsummaryrefslogtreecommitdiff
path: root/types/videoupload/videoupload.install
diff options
context:
space:
mode:
Diffstat (limited to 'types/videoupload/videoupload.install')
-rw-r--r--types/videoupload/videoupload.install27
1 files changed, 0 insertions, 27 deletions
diff --git a/types/videoupload/videoupload.install b/types/videoupload/videoupload.install
deleted file mode 100644
index 9f43a6d..0000000
--- a/types/videoupload/videoupload.install
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-// $Id$
-
-/**
- * Implements hook_field_schema().
- */
-function uploadfield_field_schema($field) {
- return array(
- 'columns' => array(
- 'fid' => array(
- 'description' => 'The {file_managed}.fid being referenced in this field.',
- 'type' => 'int',
- 'not null' => FALSE,
- 'unsigned' => TRUE,
- ),
- ),
- 'indexes' => array(
- 'fid' => array('fid'),
- ),
- 'foreign keys' => array(
- 'fid' => array(
- 'table' => 'file_managed',
- 'columns' => array('fid' => 'fid'),
- ),
- ),
- );
-} \ No newline at end of file