mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Adding updated field to photo table
This commit is contained in:
parent
3aad29358c
commit
b4eef25d37
1 changed files with 3 additions and 2 deletions
|
@ -34,7 +34,7 @@
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
|
|
||||||
if (!defined('DB_UPDATE_VERSION')) {
|
if (!defined('DB_UPDATE_VERSION')) {
|
||||||
define('DB_UPDATE_VERSION', 1303);
|
define('DB_UPDATE_VERSION', 1304);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
@ -960,7 +960,8 @@ return [
|
||||||
"deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
|
"deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
|
||||||
"deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
|
"deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
|
||||||
"backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
|
"backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
|
||||||
"backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"]
|
"backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"],
|
||||||
|
"updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["id"],
|
"PRIMARY" => ["id"],
|
||||||
|
|
Loading…
Reference in a new issue