diff options
author | friendica <info@friendica.com> | 2013-01-31 16:13:44 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-31 16:13:44 -0800 |
commit | 02e099da455f0ca42720e60eabe65ba8d4560373 (patch) | |
tree | 51ca9749aa9c67fc3a161e62eff121e9b51a34ae /install/database.sql | |
parent | a72c16c7c0c7a0b8fc0aaf5fbda78291e85cd054 (diff) | |
download | volse-hubzilla-02e099da455f0ca42720e60eabe65ba8d4560373.tar.gz volse-hubzilla-02e099da455f0ca42720e60eabe65ba8d4560373.tar.bz2 volse-hubzilla-02e099da455f0ca42720e60eabe65ba8d4560373.zip |
file/attachment storage api with revision control - needs a bit more testing but the framework is in place
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql index 17d71e7af..a16979757 100644 --- a/install/database.sql +++ b/install/database.sql @@ -84,6 +84,7 @@ CREATE TABLE IF NOT EXISTS `attach` ( `filename` char(255) NOT NULL DEFAULT '', `filetype` char(64) NOT NULL DEFAULT '', `filesize` int(10) unsigned NOT NULL DEFAULT '0', + `revision` 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', @@ -99,7 +100,13 @@ CREATE TABLE IF NOT EXISTS `attach` ( KEY `filetype` (`filetype`), KEY `filesize` (`filesize`), KEY `created` (`created`), - KEY `edited` (`edited`) + 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`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `auth_codes` ( |