From baeaa1c8d3fdf92ca8fde0f86f1ca7de3d21bcd7 Mon Sep 17 00:00:00 2001
From: Fran Garcia-Linares <fjgarlin@gmail.com>
Date: Wed, 11 Sep 2024 16:42:01 +0200
Subject: [PATCH] Add table with current status.

---
 README.md | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/README.md b/README.md
index d0a8ec0..cae949d 100644
--- a/README.md
+++ b/README.md
@@ -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
-- 
GitLab