mirror of
https://github.com/fspc/workstand.git
synced 2025-04-04 10:03:22 -04:00
22 lines
492 B
Python
22 lines
492 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2017-01-01 20:54
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='visit',
|
|
name='created_at',
|
|
field=models.DateTimeField(default=django.utils.timezone.now),
|
|
),
|
|
]
|