Added two fields in the database.sql that were added via update.

This commit is contained in:
Michael Vogel 2014-02-03 23:22:37 +01:00
parent c2abf0aeea
commit 254f1c3acc
1 changed files with 2 additions and 0 deletions

View File

@ -184,6 +184,8 @@ CREATE TABLE IF NOT EXISTS `contact` (
`profile-id` int(11) NOT NULL DEFAULT '0' COMMENT 'which profile to display - 0 is public default', `profile-id` int(11) NOT NULL DEFAULT '0' COMMENT 'which profile to display - 0 is public default',
`bdyear` char(4) NOT NULL COMMENT 'birthday notify flag', `bdyear` char(4) NOT NULL COMMENT 'birthday notify flag',
`bd` date NOT NULL, `bd` date NOT NULL,
`notify_new_posts` TINYINT(1) NOT NULL DEFAULT '0',
`fetch_further_information` TINYINT(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
KEY `uid` (`uid`), KEY `uid` (`uid`),
KEY `self` (`self`), KEY `self` (`self`),