mirror of https://github.com/fspc/workstand.git
Drew Larson
8 years ago
3 changed files with 49 additions and 2 deletions
@ -0,0 +1,26 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.4 on 2017-02-02 03:45 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.utils.timezone |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('bike', '0004_auto_20170129_2220'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='bike', |
|||
name='donated_at', |
|||
field=models.DateField(default=django.utils.timezone.now), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='bike', |
|||
name='donated_by', |
|||
field=models.TextField(blank=True, null=True), |
|||
), |
|||
] |
@ -0,0 +1,21 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.4 on 2017-02-02 03:49 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.utils.timezone |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('bike', '0005_auto_20170202_0345'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='bike', |
|||
name='donated_at', |
|||
field=models.DateTimeField(default=django.utils.timezone.now), |
|||
), |
|||
] |
Loading…
Reference in new issue