Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3361761
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3361761
Commits
a5e833b4
Commit
a5e833b4
authored
19 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#39697
by Cvbge and Markus: critical bug: fixed upgrade path of drupal.module changes.
parent
304e0b29
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
database/updates.inc
+4
-4
4 additions, 4 deletions
database/updates.inc
with
4 additions
and
4 deletions
database/updates.inc
+
4
−
4
View file @
a5e833b4
...
...
@@ -1349,7 +1349,7 @@ function system_update_166() {
switch
(
$GLOBALS
[
'db_type'
])
{
case
'mysqli'
:
case
'mysql'
:
update_sql
(
"CREATE TABLE client (
$ret
[]
=
update_sql
(
"CREATE TABLE
{
client
}
(
cid int(10) unsigned NOT NULL auto_increment,
link varchar(255) NOT NULL default '',
name varchar(128) NOT NULL default '',
...
...
@@ -1363,7 +1363,7 @@ function system_update_166() {
changed int(11) NOT NULL default '0',
PRIMARY KEY (cid)
) TYPE=MyISAM"
);
update_sql
(
"CREATE TABLE client_system (
$ret
[]
=
update_sql
(
"CREATE TABLE
{
client_system
}
(
cid int(10) NOT NULL default '0',
name varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',
...
...
@@ -1372,7 +1372,7 @@ function system_update_166() {
break
;
case
'pgsql'
:
update_sql
(
"CREATE TABLE client (
$ret
[]
=
update_sql
(
"CREATE TABLE
{
client
}
(
cid SERIAL,
link varchar(255) NOT NULL default '',
name varchar(128) NOT NULL default '',
...
...
@@ -1386,7 +1386,7 @@ function system_update_166() {
changed integer NOT NULL default '0',
PRIMARY KEY (cid)
)"
);
update_sql
(
"CREATE TABLE client_system (
$ret
[]
=
update_sql
(
"CREATE TABLE
{
client_system
}
(
cid integer NOT NULL,
name varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment