You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now when new migrations arrive, they are inserted into database while doing db:migrate. The problem is that description in DB is taken from migration's filename so it's only the labelized version of it (100 chars at max, only A-Z characters).
Proposal:
renaming 'description' to 'label' in database
creating additional 'description' field with full description
It would be best to implement it by creating a new static public variable called $description in each Migration file.