mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-09 08:36:23 +01:00
28 lines
714 B
Python
28 lines
714 B
Python
# Generated by Django 3.1.5 on 2021-01-07 21:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('notifications', '0003_make_strings_more_stringy'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='notification',
|
|
options={},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='notification',
|
|
name='timestamp',
|
|
field=models.DateTimeField(auto_now_add=True, db_index=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='notification',
|
|
name='viewed',
|
|
field=models.BooleanField(db_index=True, default=False),
|
|
),
|
|
]
|