diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2015-06-04 07:31:04 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-06-04 07:58:39 +0200 |
commit | f6d65e533c62f6deb21342d4901ece24497b433e (patch) | |
tree | f28adf0362d14bcd448f7b65a7aaf38650f923aa /maintenance/mssql/tables.sql | |
parent | c27b2e832fe25651ef2410fae85b41072aae7519 (diff) |
Update to MediaWiki 1.25.1
Diffstat (limited to 'maintenance/mssql/tables.sql')
-rw-r--r-- | maintenance/mssql/tables.sql | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/maintenance/mssql/tables.sql b/maintenance/mssql/tables.sql index b9cd7159..5b09ffdc 100644 --- a/maintenance/mssql/tables.sql +++ b/maintenance/mssql/tables.sql @@ -111,7 +111,6 @@ CREATE TABLE /*_*/page ( page_namespace INT NOT NULL, page_title NVARCHAR(255) NOT NULL, page_restrictions NVARCHAR(255) NOT NULL, - page_counter BIGINT NOT NULL DEFAULT 0, page_is_redirect BIT NOT NULL DEFAULT 0, page_is_new BIT NOT NULL DEFAULT 0, page_random real NOT NULL DEFAULT RAND(), @@ -422,9 +421,6 @@ CREATE TABLE /*_*/site_stats ( -- The single row should contain 1 here. ss_row_id int NOT NULL, - -- Total number of page views, if hit counters are enabled. - ss_total_views bigint default 0, - -- Total number of edits performed. ss_total_edits bigint default 0, @@ -453,18 +449,6 @@ CREATE UNIQUE INDEX /*i*/ss_row_id ON /*_*/site_stats (ss_row_id); -- --- Stores an ID for every time any article is visited; --- depending on $wgHitcounterUpdateFreq, it is --- periodically cleared and the page_counter column --- in the page table updated for all the articles --- that have been visited.) --- -CREATE TABLE /*_*/hitcounter ( - hc_id int NOT NULL -); - - --- -- The internet is full of jerks, alas. Sometimes it's handy -- to block a vandal or troll account. -- |