Add notes to scrobble model
This commit is contained in:
21
vrobbler/apps/scrobbles/migrations/0030_scrobble_notes.py
Normal file
21
vrobbler/apps/scrobbles/migrations/0030_scrobble_notes.py
Normal file
@ -0,0 +1,21 @@
|
||||
# Generated by Django 4.1.5 on 2023-03-11 22:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
(
|
||||
"scrobbles",
|
||||
"0029_remove_scrobble_video_game_minutes_played_and_more",
|
||||
),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="scrobble",
|
||||
name="notes",
|
||||
field=models.TextField(blank=True, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user