add missing migration
This commit is contained in:
parent
b182845f0a
commit
a4531dbb9c
1 changed files with 20 additions and 0 deletions
20
users/migrations/0002_preference_auto_bookmark_cats.py
Normal file
20
users/migrations/0002_preference_auto_bookmark_cats.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Generated by Django 4.2.13 on 2024-06-16 02:57
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
import users.models.preference
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("users", "0001_initial_0_10"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="preference",
|
||||
name="auto_bookmark_cats",
|
||||
field=models.JSONField(default=users.models.preference._default_book_cats),
|
||||
),
|
||||
]
|
Loading…
Add table
Reference in a new issue