Часто, при добавлении новых полей в модель/БД, и выполнении ./manage.py makemigrations, django хочет знать, чем заполнить поля в строках таблицы которые уже есть или могут быть. Null он туда подставить не может, т.к. поле текстовое, поэтому выбираем 1 и указываем ""
You are trying to add a non-nullable field 'tree_id' to vrf without a default; we can't do that (the database needs something to populate existing rows). Please select a fix: 1) Provide a one-off default now (will be set on all existing rows) 2) Quit, and let me add a default in models.py Select an option: 1 Please enter the default value now, as valid Python The datetime and django.utils.timezone modules are available, so you can do e.g. timezone.now() >>> ""