Skip to content
Snippets Groups Projects
Commit baeaa1c8 authored by Fran Garcia-Linares's avatar Fran Garcia-Linares
Browse files

Add table with current status.

parent 4b31240a
No related branches found
No related tags found
No related merge requests found
......@@ -96,6 +96,46 @@ Migrations to run (included in `<root>/scripts/migrations.sh`:
ddev drush mim FILES
```
## Drupal 7 number of nodes per content type
```
MariaDB [drupal]> select type, count(*) as c from node group by type order by c desc;
+----------------------+---------+
| type | c |
+----------------------+---------+
| project_issue | 1376660 | ℹ️ (GitLab issues)
| forum | 366017 |
| project_release | 236411 | ✅ ⚠️ (fields)
| project_module | 52484 | ✅️️ ⚠️ (fields)
| book | 8621 |
| documentation | 7788 | ⚠️ (panels)
| changenotice | 6088 |
| organization | 4988 | ✅
| project_theme | 3254 | ✅ ⚠️ (fields)
| image | 3239 |
| casestudy | 2950 | ✅
| guide | 1986 | ⚠️ (panels)
| project_distribution | 1491 | ✅ ⚠️ (fields)
| event | 1046 |
| post | 1020 | ✅ ⚠️ (OG groups)
| page | 627 |
| sa | 547 |
| project_drupalorg | 275 | ✅ ⚠️ (fields)
| project_general | 149 | ✅ ⚠️ (fields)
| book_listing | 141 |
| project_core | 117 | ✅ ⚠️ (fields)
| project_translation | 99 | ✅ ⚠️ (fields)
| logo | 78 |
| section | 69 |
| contributor_role | 55 |
| contributor_skill | 41 |
| contributor_task | 35 |
| hosting_listing | 33 |
| project_theme_engine | 20 | ✅ ⚠️ (fields)
| story | 8 |
+----------------------+---------+
30 rows in set (3.121 sec)
```
## Implemented Hacks
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment