- 🇺🇸United States smustgrave
Thank you for creating this issue to improve Drupal.
We are working to decide if this task is still relevant to a currently supported version of Drupal. There hasn't been any discussion here for over 8 years which suggests that this has either been implemented or is no longer relevant. Your thoughts on this will allow a decision to be made.
Since we need more information to move forward with this issue, the status is now Postponed (maintainer needs more info). If we don't receive additional information to help with the issue, it may be closed after three months.
Thanks!
- 🇮🇹Italy mondrake 🇮🇹
This issue is, if I understand correctly, about the fact that the term 'field' should have never reached the database API, where it's all rows and columns.
I think this is still a valid point, even if it's more a bit of an academic problem at the moment then anything else: everything works just fine as-is today - most probably people just got used to this.
Since when this issue was born, we have now a proper deprecation process in place. If someone wants to tackle this, replacing
Schema::addField
,::changeField
, etc. withSchema::addColumn
,::changeColumn
is feasible in an orderly manner. Probably a bit more problematic replacingSelectInterface::fields()
and friends if nothing else because of the sheer amount of change it will imply.