Spaces:
Running
Running
| # Generated by Django 4.1 on 2024-11-09 22:49 | |
| from django.db import migrations, models | |
| class Migration(migrations.Migration): | |
| initial = True | |
| dependencies = [ | |
| ] | |
| operations = [ | |
| migrations.CreateModel( | |
| name='ModeloUsuarioModel', | |
| fields=[ | |
| ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | |
| ('user_id', models.IntegerField()), | |
| ('modelo', models.TextField()), | |
| ], | |
| ), | |
| ] | |