blob: 3c508ed246d4b405ddd5bb2870f931572d430fd8 [file] [log] [blame]
Mitja Nikolausb9230462018-08-16 09:54:11 +02001# -*- coding: utf-8 -*-
2# Generated by Django 1.10.2 on 2018-08-16 09:10
3"""Remove previously added default value for updated_at column."""
4from __future__ import unicode_literals
5
6from django.db import migrations, models
7
8
9class Migration(migrations.Migration):
10 """Remove default None value which was added manually."""
11
12 dependencies = [
13 ('crashreport_stats', '0004_statsmedata_and_no_broken_default_dates'),
14 ]
15
16 operations = [
17 migrations.AlterField(
18 model_name='statsmetadata',
19 name='updated_at',
20 field=models.DateTimeField(),
21 ),
22 ]