Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes apache#8187 ### Motivation The length of the consumerName in pulsar-dashboard's django model was increased to 256 in apache#4716 however the change was not propagated by the django migrations system. The existing migrations result in a size of 64: https://github.com/apache/pulsar/blob/e65875b99e3985630e3147c2579e91da4c3973bf/dashboard/django/stats/migrations/0001_initial.py#L56 This pull request fixes this. `./manage.py makemigrations` was used to generate this migration. ### Modifications An additional django migration file is included to update the db to match the model.
- Loading branch information