Add CorpContact.ext_id

This commit is contained in:
Claude Paroz 2015-10-01 14:47:43 +02:00
parent bca01d6380
commit 98584f7208
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('stages', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='corpcontact',
name='ext_id',
field=models.IntegerField(verbose_name='ID externe', blank=True, null=True),
),
]