diff options
author | friendica <info@friendica.com> | 2013-01-30 17:27:32 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-30 17:27:32 -0800 |
commit | 3767bba3c3669b6e882139abfaa3553db61d1474 (patch) | |
tree | 5d2b662c62b42027d64292b6229edecdb2dd782b /install/database.sql | |
parent | e270bd3874bb4526138cc06cd26e2a1153778894 (diff) | |
download | volse-hubzilla-3767bba3c3669b6e882139abfaa3553db61d1474.tar.gz volse-hubzilla-3767bba3c3669b6e882139abfaa3553db61d1474.tar.bz2 volse-hubzilla-3767bba3c3669b6e882139abfaa3553db61d1474.zip |
beginning of backend file/attachment api
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql index aee87c119..ba063bfa4 100644 --- a/install/database.sql +++ b/install/database.sql @@ -94,7 +94,12 @@ CREATE TABLE IF NOT EXISTS `attach` ( PRIMARY KEY (`id`), KEY `aid` (`aid`), KEY `uid` (`uid`), - KEY `hash` (`hash`) + KEY `hash` (`hash`), + KEY `filename` (`filename`), + KEY `filetype` (`filetype`), + KEY `filesize` (`filesize`), + KEY `created` (`created`), + KEY `edited` (`edited`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `auth_codes` ( |