summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
Diffstat (limited to 'update.php')
-rw-r--r--update.php20
1 files changed, 19 insertions, 1 deletions
diff --git a/update.php b/update.php
index 39cbe5c7a..f021cea84 100644
--- a/update.php
+++ b/update.php
@@ -109,7 +109,7 @@ function update_info() {
print "</ol>";
print "Notes:";
print "<ol>";
- print " <li>If you <strong>upgrade from Drupal 4.4.x</strong>, you will need to create the <code>users_roles</code> table manually before upgrading. To create the <code>users_roles</code> table, issue the following SQL commands:
+ print " <li>If you <strong>upgrade from Drupal 4.4.x</strong>, you will need to create the <code>users_roles</code> and <code>locales_meta</code> tables manually before upgrading. To create these tables, issue the following SQL commands:
<p>MySQL specific example:
<pre>
@@ -118,6 +118,15 @@ function update_info() {
rid int(10) unsigned NOT NULL default '0',
PRIMARY KEY (uid, rid)
);
+ CREATE TABLE locales_meta (
+ locale varchar(12) NOT NULL default '',
+ name varchar(64) NOT NULL default '',
+ enabled int(2) NOT NULL default '0',
+ isdefault int(2) NOT NULL default '0',
+ plurals int(1) NOT NULL default '0',
+ formula varchar(128) NOT NULL default '',
+ PRIMARY KEY (locale)
+ );
</pre>
</p>
@@ -128,6 +137,15 @@ function update_info() {
rid integer NOT NULL default '0',
PRIMARY KEY (uid, rid)
);
+ CREATE TABLE locales_meta (
+ locale varchar(12) NOT NULL default '',
+ name varchar(64) NOT NULL default '',
+ enabled int4 NOT NULL default '0',
+ isdefault int4 NOT NULL default '0',
+ plurals int4 NOT NULL default '0',
+ formula varchar(128) NOT NULL default '',
+ PRIMARY KEY (locale)
+ );
</pre>
</p>
</li>";