blob: ebc9db5943744e5a62f06aa5829733152ecaab15 [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 = [
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +020013 ("crashreport_stats", "0004_statsmedata_and_no_broken_default_dates")
Mitja Nikolausb9230462018-08-16 09:54:11 +020014 ]
15
16 operations = [
17 migrations.AlterField(
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +020018 model_name="statsmetadata",
19 name="updated_at",
Mitja Nikolausb9230462018-08-16 09:54:11 +020020 field=models.DateTimeField(),
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +020021 )
Mitja Nikolausb9230462018-08-16 09:54:11 +020022 ]