You've already forked opc-backend
24 lines
565 B
Python
24 lines
565 B
Python
|
|
# Generated by Django 4.2.30 on 2026-04-25 13:21
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('users', '0002_enterprise_credit_code'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='user',
|
||
|
|
name='bio',
|
||
|
|
field=models.TextField(blank=True, null=True),
|
||
|
|
),
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='user',
|
||
|
|
name='location',
|
||
|
|
field=models.CharField(blank=True, max_length=128, null=True),
|
||
|
|
),
|
||
|
|
]
|