Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3174996
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-3174996
Commits
73b93b90
Commit
73b93b90
authored
20 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Bug
#18597
: updated the database scheme. Renamed poll.voters to poll.polled.
parent
f60da5b0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
database/database.mysql
+1
-1
1 addition, 1 deletion
database/database.mysql
database/database.pgsql
+1
-1
1 addition, 1 deletion
database/database.pgsql
with
2 additions
and
2 deletions
database/database.mysql
+
1
−
1
View file @
73b93b90
...
...
@@ -497,7 +497,7 @@ CREATE TABLE permission (
CREATE TABLE poll (
nid int(10) unsigned NOT NULL default '0',
runtime int(10) NOT NULL default '0',
voters
longtext NOT NULL,
polled
longtext NOT NULL,
active int(2) unsigned NOT NULL default '0',
PRIMARY KEY (nid)
) TYPE=MyISAM;
...
...
This diff is collapsed.
Click to expand it.
database/database.pgsql
+
1
−
1
View file @
73b93b90
...
...
@@ -509,7 +509,7 @@ CREATE INDEX permission_rid_idx ON permission(rid);
CREATE TABLE poll (
nid integer NOT NULL default '0',
runtime integer NOT NULL default '0',
voters
text NOT NULL default '',
polled
text NOT NULL default '',
active integer NOT NULL default '0',
PRIMARY KEY (nid)
);
...
...
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