Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
project
drupal
Commits
02b3877d
Commit
02b3877d
authored
18 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#76914
by smsimms/sammys: PostgreSQL fixes for installer.
parent
e7982b38
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/system/system.install
+2
-4
2 additions, 4 deletions
modules/system/system.install
with
2 additions
and
4 deletions
modules/system/system.install
+
2
−
4
View file @
02b3877d
...
@@ -587,7 +587,7 @@ function system_install() {
...
@@ -587,7 +587,7 @@ function system_install() {
db_query
(
"CREATE TABLE
{
node_revisions
}
(
db_query
(
"CREATE TABLE
{
node_revisions
}
(
nid int_unsigned NOT NULL,
nid int_unsigned NOT NULL,
vid
int_unsigned NOT NULL
,
vid
serial CHECK (vid >= 0)
,
uid int NOT NULL default '0',
uid int NOT NULL default '0',
title varchar(128) NOT NULL default '',
title varchar(128) NOT NULL default '',
body text NOT NULL default '',
body text NOT NULL default '',
...
@@ -599,7 +599,6 @@ function system_install() {
...
@@ -599,7 +599,6 @@ function system_install() {
)"
);
)"
);
db_query
(
"CREATE INDEX
{
node_revisions
}
_nid_idx ON
{
node_revisions
}
(nid)"
);
db_query
(
"CREATE INDEX
{
node_revisions
}
_nid_idx ON
{
node_revisions
}
(nid)"
);
db_query
(
"CREATE INDEX
{
node_revisions
}
_uid_idx ON
{
node_revisions
}
(uid)"
);
db_query
(
"CREATE INDEX
{
node_revisions
}
_uid_idx ON
{
node_revisions
}
(uid)"
);
db_query
(
"CREATE SEQUENCE
{
node_revisions
}
_vid_seq INCREMENT 1 START 1"
);
db_query
(
"CREATE TABLE
{
node_type
}
(
db_query
(
"CREATE TABLE
{
node_type
}
(
type varchar(32) NOT NULL,
type varchar(32) NOT NULL,
...
@@ -734,7 +733,7 @@ function system_install() {
...
@@ -734,7 +733,7 @@ function system_install() {
db_query
(
"CREATE INDEX
{
term_synonym
}
_name_idx ON
{
term_synonym
}
(substr(name, 1, 3))"
);
db_query
(
"CREATE INDEX
{
term_synonym
}
_name_idx ON
{
term_synonym
}
(substr(name, 1, 3))"
);
db_query
(
"CREATE TABLE
{
users
}
(
db_query
(
"CREATE TABLE
{
users
}
(
uid
int_unsigned NOT NULL default '0'
,
uid
serial CHECK (uid >= 0)
,
name varchar(60) NOT NULL default '',
name varchar(60) NOT NULL default '',
pass varchar(32) NOT NULL default '',
pass varchar(32) NOT NULL default '',
mail varchar(64) default '',
mail varchar(64) default '',
...
@@ -756,7 +755,6 @@ function system_install() {
...
@@ -756,7 +755,6 @@ function system_install() {
UNIQUE (name)
UNIQUE (name)
)"
);
)"
);
db_query
(
"CREATE INDEX
{
users
}
_access_idx ON
{
users
}
(access)"
);
db_query
(
"CREATE INDEX
{
users
}
_access_idx ON
{
users
}
(access)"
);
db_query
(
"CREATE SEQUENCE
{
users
}
_uid_seq INCREMENT 1 START 1"
);
db_query
(
"CREATE TABLE
{
users_roles
}
(
db_query
(
"CREATE TABLE
{
users_roles
}
(
uid int_unsigned NOT NULL default '0',
uid int_unsigned NOT NULL default '0',
...
...
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