mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-13 12:14:06 +02:00
[feature/soft-delete] Append _approved to *_posts and *_topics column names
PHPBB3-9567
This commit is contained in:
@@ -363,10 +363,10 @@ CREATE TABLE phpbb_forums (
|
||||
forum_topics_per_page INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_type INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_status INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_posts INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_posts_approved INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_posts_unapproved INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_posts_softdeleted INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_topics INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_topics_approved INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_topics_unapproved INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_topics_softdeleted INTEGER DEFAULT 0 NOT NULL,
|
||||
forum_last_post_id INTEGER DEFAULT 0 NOT NULL,
|
||||
@@ -1128,7 +1128,7 @@ CREATE TABLE phpbb_topics (
|
||||
topic_time INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_time_limit INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_views INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_posts INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_posts_approved INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_posts_unapproved INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_posts_softdeleted INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_status INTEGER DEFAULT 0 NOT NULL,
|
||||
|
Reference in New Issue
Block a user