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
4ac70d70
Commit
4ac70d70
authored
23 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Updated database.mysql
parent
d3fc6962
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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
database/database.mysql
+28
-5
28 additions, 5 deletions
database/database.mysql
with
28 additions
and
5 deletions
database/database.mysql
+
28
−
5
View file @
4ac70d70
...
...
@@ -31,15 +31,15 @@ CREATE TABLE book (
);
CREATE TABLE boxes (
id tinyint(4) DEFAULT '0' NOT NULL auto_increment,
subject
varchar(64) DEFAULT '' NOT NULL,
content
text,
b
id tinyint(4) DEFAULT '0' NOT NULL auto_increment,
title
varchar(64) DEFAULT '' NOT NULL,
body
text,
info varchar(128) DEFAULT '' NOT NULL,
link varchar(128) DEFAULT '' NOT NULL,
type tinyint(2) DEFAULT '0' NOT NULL,
UNIQUE subject (
subject
),
UNIQUE subject (
title
),
UNIQUE info (info),
PRIMARY KEY (id)
PRIMARY KEY (
b
id)
);
CREATE TABLE bundle (
...
...
@@ -50,6 +50,13 @@ CREATE TABLE bundle (
PRIMARY KEY (bid)
);
CREATE TABLE cache (
url varchar(255) DEFAULT '' NOT NULL,
data text NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (url)
);
CREATE TABLE category (
cid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
...
...
@@ -262,6 +269,11 @@ CREATE TABLE rating (
PRIMARY KEY (user)
);
CREATE TABLE referer (
url varchar(255) DEFAULT '' NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL
);
CREATE TABLE role (
rid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
...
...
@@ -270,6 +282,17 @@ CREATE TABLE role (
PRIMARY KEY (rid)
);
CREATE TABLE site (
sid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
title varchar(128) DEFAULT '' NOT NULL,
url varchar(255) DEFAULT '' NOT NULL,
size text NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
UNIQUE title (title),
UNIQUE url (url),
PRIMARY KEY (sid)
);
CREATE TABLE story (
lid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,
...
...
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