29 lines
816 B
Python
29 lines
816 B
Python
# Generated by Django 5.2.3 on 2025-07-14 16:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Licencia',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('nombre', models.CharField(max_length=100)),
|
|
('descripcion', models.TextField(blank=True, null=True)),
|
|
('almacenamiento', models.PositiveIntegerField(default=0)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Licencia',
|
|
'verbose_name_plural': 'Licencias',
|
|
'db_table': 'licencia',
|
|
},
|
|
),
|
|
]
|