mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 13:00:16 +02:00
Also, change ordering, add pagination, and stripe the table for increased readability. Action column now also reads "Removed" when a user is removed from a group. Note that this does not change anything on the back-end, so if you use this data for anything else, be aware that while the template is explicit, the data isn't as explicit.
20 lines
456 B
Python
20 lines
456 B
Python
# Generated by Django 2.0.8 on 2018-12-07 08:56
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('groupmanagement', '0010_authgroup_states'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='requestlog',
|
|
name='date',
|
|
field=models.DateTimeField(default=datetime.datetime(2018, 12, 7, 8, 56, 33, 846342)),
|
|
),
|
|
]
|