diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-31 21:00:28 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-31 21:00:28 -0700 |
commit | d7089ab471d446453f41ba1311b3d7186d86ff4c (patch) | |
tree | ce75108ac809d77d33217e8e844ec0a8b0e3965b /install/schema_mysql.sql | |
parent | 039f56f390c69ad0aedadcca3d611fea0d9eebf9 (diff) | |
parent | d7cae1ce2abfda2049bcb9510ae1916865bb55a3 (diff) | |
download | volse-hubzilla-d7089ab471d446453f41ba1311b3d7186d86ff4c.tar.gz volse-hubzilla-d7089ab471d446453f41ba1311b3d7186d86ff4c.tar.bz2 volse-hubzilla-d7089ab471d446453f41ba1311b3d7186d86ff4c.zip |
Merge https://github.com/redmatrix/redmatrix into pending_merge
Conflicts:
include/identity.php
install/update.php
util/messages.po
view/nl/messages.po
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r-- | install/schema_mysql.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index aaeab4f87..5ee1ec463 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -688,6 +688,7 @@ CREATE TABLE IF NOT EXISTS `likes` ( `liker` char(128) NOT NULL DEFAULT '', `likee` char(128) NOT NULL DEFAULT '', `iid` int(11) unsigned NOT NULL DEFAULT '0', + `i_mid` char(255) NOT NULL DEFAULT '', `verb` char(255) NOT NULL DEFAULT '', `target_type` char(255) NOT NULL DEFAULT '', `target_id` char(128) NOT NULL DEFAULT '', @@ -696,6 +697,7 @@ CREATE TABLE IF NOT EXISTS `likes` ( KEY `liker` (`liker`), KEY `likee` (`likee`), KEY `iid` (`iid`), + KEY `i_mid` (`i_mid`), KEY `verb` (`verb`), KEY `target_type` (`target_type`), KEY `channel_id` (`channel_id`), |