mirror of https://github.com/sipwise/repoapi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
564 B
23 lines
564 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.29 on 2020-07-24 14:53
|
|
import django.utils.timezone
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("build", "0003_buildrelease_triggered_projects"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="buildrelease",
|
|
name="start_date",
|
|
field=models.DateTimeField(
|
|
blank=True, default=django.utils.timezone.now, editable=False
|
|
),
|
|
),
|
|
]
|