django-djeddit icon indicating copy to clipboard operation
django-djeddit copied to clipboard

Unapplied Migration thread.locked

Open wisefool769 opened this issue 5 years ago • 0 comments

  • django-djeddit version:0.3.4
  • Django version:2
  • Python version:3.7
  • Operating System:Mac OS X

Description

I was trying to run the app and got an error about models having unapplied migrations

What I Did

I did makemigrations, and the warning went away, creating a migration like this: class Migration(migrations.Migration):

dependencies = [
    ('djeddit', '0006_thread_slug'),
]

operations = [
    migrations.AlterField(
        model_name='thread',
        name='locked',
        field=models.BooleanField(blank=True, default=False),
    ),
]

wisefool769 avatar Apr 04 '19 03:04 wisefool769