Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinefalisse committed Apr 12, 2024
2 parents 7287eb9 + 220a510 commit a937c73
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions mcserver/migrations/0034_auto_20240409_1133.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Generated by Django 3.1.14 on 2024-04-09 18:33

from django.db import migrations, models
import django.utils.timezone


class Migration(migrations.Migration):

dependencies = [
('mcserver', '0033_auto_20240319_1339'),
]

operations = [
migrations.AddField(
model_name='session',
name='status',
field=models.CharField(blank=True, db_index=True, default='init', max_length=64),
),
migrations.AddField(
model_name='session',
name='status_changed',
field=models.DateTimeField(blank=True, db_index=True, default=django.utils.timezone.now, null=True),
),
]

0 comments on commit a937c73

Please sign in to comment.