mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Probably should split into separate repo at some point, but committing here so I don't lose it
20 lines
392 B
Python
20 lines
392 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('DiscourseAuth', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='authattempt',
|
|
old_name='created',
|
|
new_name='created_at',
|
|
),
|
|
]
|