Comments support
Would be nice if we could use SQL comments on tables, columns & indexes, ie. (from MySQL documentation) :
ALTER TABLE t1 MODIFY col1 BIGINT UNSIGNED DEFAULT 1 COMMENT 'my column';
Isn't that already possible by adding comment="foobar" to the field definitions? I think I've seen that somewhere, but not sure where..
You can add those to the schema, but they do not currently get written to the database when the tables are created.
I suggested this years ago. I would much rather see https://github.com/modxcms/xpdo/issues/29 implemented as it would save quite a bit of time for projects with a multiple tables - especially if they are extensive.