add forgotten migration
This commit is contained in:
parent
b69769d71a
commit
d0f6ed9ea3
2 changed files with 21 additions and 1 deletions
20
cas_server/migrations/0002_auto_20151212_1300.py
Normal file
20
cas_server/migrations/0002_auto_20151212_1300.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- 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,
|
||||
),
|
||||
]
|
2
setup.py
2
setup.py
|
@ -9,7 +9,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
|||
|
||||
setup(
|
||||
name='django-cas-server',
|
||||
version='0.3',
|
||||
version='0.3.1',
|
||||
packages=['cas_server'],
|
||||
include_package_data=True,
|
||||
license='GPLv3',
|
||||
|
|
Loading…
Reference in a new issue