From 75722e4f198bacae019fcf852c3f358b18a45e5c Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 25 Aug 2009 10:58:32 +0000 Subject: - Patch #537434 by chx, bangpound, moshe weitzman, David Strauss: move the blog API module to contrib. --- modules/blogapi/blogapi.install | 69 ----------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 modules/blogapi/blogapi.install (limited to 'modules/blogapi/blogapi.install') diff --git a/modules/blogapi/blogapi.install b/modules/blogapi/blogapi.install deleted file mode 100644 index 2bbcd57a3..000000000 --- a/modules/blogapi/blogapi.install +++ /dev/null @@ -1,69 +0,0 @@ - 'Stores information for files uploaded via the blogapi.', - 'fields' => array( - 'fid' => array( - 'description' => 'Primary Key: Unique file ID.', - 'type' => 'serial', - ), - 'uid' => array( - 'description' => 'The {users}.uid of the user who is associated with the file.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - 'filepath' => array( - 'description' => 'Path of the file relative to Drupal root.', - 'type' => 'varchar', - 'length' => 255, - 'not null' => TRUE, - 'default' => '', - ), - 'filesize' => array( - 'description' => 'The size of the file in bytes.', - 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, - ), - ), - 'primary key' => array('fid'), - 'indexes' => array( - 'uid' => array('uid'), - ), - 'foreign keys' => array( - 'uid' => array('users' => 'uid'), - ), - ); - - return $schema; -} -- cgit v1.2.3