mirror of
https://github.com/friendica/friendica
synced 2025-04-19 07:10:11 +00:00
database updates
This commit is contained in:
parent
9920fb39e5
commit
2a01ae8149
3 changed files with 7 additions and 8 deletions
|
@ -944,12 +944,14 @@ CREATE TABLE IF NOT EXISTS `session` (
|
|||
|
||||
CREATE TABLE IF NOT EXISTS `sign` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`iid` int(10) unsigned NOT NULL,
|
||||
`iid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`retract_iid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`signed_text` mediumtext NOT NULL,
|
||||
`signature` text NOT NULL,
|
||||
`signer` char(255) NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `iid` (`iid`)
|
||||
KEY `iid` (`iid`),
|
||||
KEY `retract_iid` (`retract_iid`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue