Opened 3 years ago
Last modified 3 years ago
#34253 closed Bug
migrations don't apply — at Initial Version
| Reported by: | Oleg Korsak | Owned by: | nobody |
|---|---|---|---|
| Component: | Uncategorized | Version: | 4.1 |
| Severity: | Normal | Keywords: | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
# Generated by Django 4.1.5 on 2023-01-12 01:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('myApp', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='report49',
name='d29',
field=models.IntegerField(default=1),
),
]
there is no such migration applied yet, but sqlmigrate shows:
BEGIN; -- -- Alter field d29 on report49 -- -- (no-op) COMMIT;
Note:
See TracTickets
for help on using tickets.