Files @ 2b709f61e022
Branch filter:

Location: website/conservancy/fossy/migrations/0003_communitytrackproposal_created_time.py

bsturmfels
Make bin/deploy abort if there's an error with `git push`

For example, your push failed because there's upstream changes.
# Generated by Django 3.2.19 on 2024-02-27 02:56

import datetime
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('fossy', '0002_auto_20230130_1841'),
    ]

    operations = [
        migrations.AddField(
            model_name='communitytrackproposal',
            name='created_time',
            field=models.DateTimeField(auto_now_add=True, default=datetime.datetime(2023, 3, 19, 0, 0)),
            preserve_default=False,
        ),
    ]