Skip to content
Snippets Groups Projects
Commit 01ced76d authored by Carlos Vega's avatar Carlos Vega
Browse files

changed modified_table_id from string to integer

parent 4b7f7996
No related branches found
No related tags found
1 merge request!229Feature/provenance
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2020-03-20 09:31
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0146_auto_20200319_1446'),
]
operations = [
migrations.AlterField(
model_name='provenance',
name='modified_table_id',
field=models.IntegerField(default=0, verbose_name=b'Modified table row'),
),
]
...@@ -12,10 +12,7 @@ class Provenance(models.Model): ...@@ -12,10 +12,7 @@ class Provenance(models.Model):
blank=False, null=False blank=False, null=False
) )
modified_table_id = models.CharField(max_length=1024, modified_table_id = models.IntegerField(default=0, verbose_name='Modified table row', blank=False, null=False)
verbose_name='Modified table row',
blank=False, null=False
)
modification_date = models.DateTimeField( modification_date = models.DateTimeField(
verbose_name='Modified on', verbose_name='Modified on',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment