mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-22 07:52:15 +00:00
34 lines
906 B
Python
34 lines
906 B
Python
# Generated by Django 3.0.3 on 2020-03-17 20:06
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('assets', '0010_auto_20200219_1444'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='supplier',
|
|
name='address',
|
|
field=models.TextField(blank=True, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='supplier',
|
|
name='email',
|
|
field=models.EmailField(blank=True, max_length=254, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='supplier',
|
|
name='notes',
|
|
field=models.TextField(blank=True, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='supplier',
|
|
name='phone',
|
|
field=models.CharField(blank=True, max_length=15, null=True),
|
|
),
|
|
]
|