mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
Store wekk/month&halfyear usage / number of posts
This commit is contained in:
parent
8b585c6ccc
commit
92a71f8c27
5 changed files with 148 additions and 27 deletions
|
@ -1,6 +1,6 @@
|
|||
-- ------------------------------------------
|
||||
-- Friendica 2021.12-rc (Siberian Iris)
|
||||
-- DB_UPDATE_VERSION 1449
|
||||
-- DB_UPDATE_VERSION 1450
|
||||
-- ------------------------------------------
|
||||
|
||||
|
||||
|
@ -16,6 +16,11 @@ CREATE TABLE IF NOT EXISTS `gserver` (
|
|||
`info` text COMMENT '',
|
||||
`register_policy` tinyint NOT NULL DEFAULT 0 COMMENT '',
|
||||
`registered-users` int unsigned NOT NULL DEFAULT 0 COMMENT 'Number of registered users',
|
||||
`active-week-users` int unsigned COMMENT 'Number of active users in the last week',
|
||||
`active-month-users` int unsigned COMMENT 'Number of active users in the last month',
|
||||
`active-halfyear-users` int unsigned COMMENT 'Number of active users in the last six month',
|
||||
`local-posts` int unsigned COMMENT 'Number of local posts',
|
||||
`local-comments` int unsigned COMMENT 'Number of local comments',
|
||||
`directory-type` tinyint DEFAULT 0 COMMENT 'Type of directory service (Poco, Mastodon)',
|
||||
`poco` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
`noscrape` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue