Skip to content

Commit

Permalink
Merge pull request #279 from Ilhasoft/feature/fix_migrations_develop
Browse files Browse the repository at this point in the history
Feature/fix migrations develop
  • Loading branch information
dyohan9 committed Aug 20, 2019
2 parents a360b55 + 0587d04 commit 5ec717c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated by Django 2.1.5 on 2019-07-02 14:19
# Generated by Django 2.1.5 on 2019-08-16 20:30

from django.db import migrations, models
import django.utils.datetime_safe
import django.utils.timezone


class Migration(migrations.Migration):
Expand All @@ -18,6 +18,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='repositoryvote',
name='created',
field=models.DateTimeField(default=django.utils.datetime_safe.datetime.now, editable=False),
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
preserve_default=False,
),
]
18 changes: 0 additions & 18 deletions bothub/common/migrations/0034_auto_20190702_1443.py

This file was deleted.

0 comments on commit 5ec717c

Please sign in to comment.