FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
drupaljs/sql/indexes.sql at main · ruvnet/drupaljs · GitHub
ruvnet
/
drupaljs
Public
Notifications
You must be signed in to change notification settings
Fork
5
Star
38
Code
Issues
2
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
drupaljs
/
sql
/
indexes.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (22 loc) · 1.11 KB
Breadcrumbs
drupaljs
/
sql
/
indexes.sql
Copy path
File metadata and controls
28 lines (22 loc) · 1.11 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--
Indexes for Drupal.js
--
Indexes for users table
CREATE
INDEX
idx_users_username
ON
users (username);
CREATE
INDEX
idx_users_email
ON
users (email);
--
Indexes for content table
CREATE
INDEX
idx_content_content_type_id
ON
content (content_type_id);
CREATE
INDEX
idx_content_author_id
ON
content (author_id);
CREATE
INDEX
idx_content_created_at
ON
content (created_at);
CREATE
INDEX
idx_content_published_at
ON
content (published_at);
--
Indexes for terms table
CREATE
INDEX
idx_terms_taxonomy_id
ON
terms (taxonomy_id);
CREATE
INDEX
idx_terms_parent_id
ON
terms (parent_id);
--
Indexes for content_terms table
CREATE
INDEX
idx_content_terms_content_id
ON
content_terms (content_id);
CREATE
INDEX
idx_content_terms_term_id
ON
content_terms (term_id);
--
Indexes for comments table
CREATE
INDEX
idx_comments_content_id
ON
comments (content_id);
CREATE
INDEX
idx_comments_author_id
ON
comments (author_id);
CREATE
INDEX
idx_comments_created_at
ON
comments (created_at);
--
Indexes for menu_items table
CREATE
INDEX
idx_menu_items_menu_id
ON
menu_items (menu_id);
CREATE
INDEX
idx_menu_items_parent_id
ON
menu_items (parent_id);
Back
|
FazBrowse Home
|
New Git URL