21 lines
454 B
Python
21 lines
454 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cas_server', '0001_squashed_0021_auto_20150611_2102'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='date',
|
|
field=models.DateTimeField(auto_now=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|