support for OS files and add directory support to file/attach object

This commit is contained in:
friendica
2013-02-03 17:22:35 -08:00
parent b41106f2fb
commit 4ae5445e03
4 changed files with 22 additions and 11 deletions

View File

@@ -74,7 +74,7 @@ CREATE TABLE IF NOT EXISTS `addon` (
KEY `hidden` (`hidden`),
KEY `name` (`name`),
KEY `installed` (`installed`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `attach` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
@@ -85,6 +85,8 @@ CREATE TABLE IF NOT EXISTS `attach` (
`filetype` char(64) NOT NULL DEFAULT '',
`filesize` int(10) unsigned NOT NULL DEFAULT '0',
`revision` int(10) unsigned NOT NULL DEFAULT '0',
`folder` char(64) NOT NULL DEFAULT '',
`flags` int(10) unsigned NOT NULL DEFAULT '0',
`data` longblob NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
@@ -101,12 +103,9 @@ CREATE TABLE IF NOT EXISTS `attach` (
KEY `filesize` (`filesize`),
KEY `created` (`created`),
KEY `edited` (`edited`),
KEY `filename_2` (`filename`),
KEY `filetype_2` (`filetype`),
KEY `filesize_2` (`filesize`),
KEY `created_2` (`created`),
KEY `edited_2` (`edited`),
KEY `revision` (`revision`)
KEY `revision` (`revision`),
KEY `folder` (`folder`),
KEY `flags` (`flags`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `auth_codes` (
@@ -391,7 +390,7 @@ CREATE TABLE IF NOT EXISTS `hook` (
`priority` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `hook` (`hook`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `hubloc` (
`hubloc_id` int(10) unsigned NOT NULL AUTO_INCREMENT,

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1025 );
define( 'UPDATE_VERSION' , 1026 );
/**
*
@@ -325,3 +325,10 @@ ADD INDEX ( `revision` ) ");
return UPDATE_FAILED;
}
function update_r1025() {
$r = q("ALTER TABLE `attach` ADD `folder` CHAR( 64 ) NOT NULL DEFAULT '' AFTER `revision` ,
ADD `flags` INT UNSIGNED NOT NULL DEFAULT '0' AFTER `folder` , add index ( folder ), add index ( flags )");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}