Is there a way to add a description for a column?
This is not so much a problem/bug but more of a feature request (understandable if this is not part of the scope of this gem) but wanted to ask:
Will there be support to add a description for a column? let's say
# length :integer not null video length in seconds
I guess I need a way to add something to the column and to not be deleted by the automatic generation of the schema information, it could be something like:
# length :integer not null * video length in seconds
where everything after the symbol (*) is ignored
I could use comments also.
Rails5 supports adding comments about fields in the DB itself, and annotate will show those. https://bigbinary.com/blog/rails-5-supports-adding-comments-migrations
Unfortunately, ad-hoc comments for existing fields are not supported that way.