aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_41_schema.sql
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-28 20:57:16 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-29 11:00:19 +0100
commitac6f0c94bfbb64a25aee07077327d52d6cb66620 (patch)
tree9a7fe6295a0e4a9ac9f7b11c1d9919f8bdd6ac63 /phpBB/install/schemas/mysql_41_schema.sql
parent0fd0be8e85864d96f4270dd5de1de1146b98afe5 (diff)
downloadforums-ac6f0c94bfbb64a25aee07077327d52d6cb66620.tar
forums-ac6f0c94bfbb64a25aee07077327d52d6cb66620.tar.gz
forums-ac6f0c94bfbb64a25aee07077327d52d6cb66620.tar.bz2
forums-ac6f0c94bfbb64a25aee07077327d52d6cb66620.tar.xz
forums-ac6f0c94bfbb64a25aee07077327d52d6cb66620.zip
[ticket/11459] Refresh schema files
PHPBB3-11459
Diffstat (limited to 'phpBB/install/schemas/mysql_41_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_41_schema.sql15
1 files changed, 14 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_41_schema.sql b/phpBB/install/schemas/mysql_41_schema.sql
index 44b24a4b17..eaab197297 100644
--- a/phpBB/install/schemas/mysql_41_schema.sql
+++ b/phpBB/install/schemas/mysql_41_schema.sql
@@ -406,6 +406,19 @@ CREATE TABLE phpbb_login_attempts (
) CHARACTER SET `utf8` COLLATE `utf8_bin`;
+# Table: 'phpbb_migrations'
+CREATE TABLE phpbb_migrations (
+ migration_name varchar(255) DEFAULT '' NOT NULL,
+ migration_depends_on text NOT NULL,
+ migration_schema_done tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
+ migration_data_done tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
+ migration_data_state text NOT NULL,
+ migration_start_time int(11) UNSIGNED DEFAULT '0' NOT NULL,
+ migration_end_time int(11) UNSIGNED DEFAULT '0' NOT NULL,
+ PRIMARY KEY (migration_name)
+) CHARACTER SET `utf8` COLLATE `utf8_bin`;
+
+
# Table: 'phpbb_moderator_cache'
CREATE TABLE phpbb_moderator_cache (
forum_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
@@ -545,7 +558,7 @@ CREATE TABLE phpbb_posts (
KEY poster_ip (poster_ip),
KEY poster_id (poster_id),
KEY tid_post_time (topic_id, post_time),
- KEY post_username (post_username:255),
+ KEY post_username (post_username),
KEY post_visibility (post_visibility)
) CHARACTER SET `utf8` COLLATE `utf8_bin`;