mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00
20 lines
531 B
Python
20 lines
531 B
Python
# Generated by Django 2.2.24 on 2021-09-20 01:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('featurematrix', '0006_feature_v13'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='feature',
|
|
name='v14',
|
|
field=models.IntegerField(choices=[(0, 'No'), (1, 'Yes'), (2, 'Obsolete'), (3, '?')], default=0, verbose_name='14'),
|
|
),
|
|
migrations.RunSQL("UPDATE featurematrix_feature SET v14=v13"),
|
|
]
|