forked from github/plane
dev: add migrations for new model attributes
This commit is contained in:
parent
a45fb44020
commit
c99eb494c8
23
apiserver/plane/db/migrations/0009_auto_20221213_2328.py
Normal file
23
apiserver/plane/db/migrations/0009_auto_20221213_2328.py
Normal file
@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.2.14 on 2022-12-13 17:58
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('db', '0008_label_colour'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='projectmember',
|
||||
name='view_props',
|
||||
field=models.JSONField(null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='state',
|
||||
name='group',
|
||||
field=models.CharField(choices=[('backlog', 'Backlog'), ('unstarted', 'Unstarted'), ('started', 'Started'), ('completed', 'Completed'), ('cancelled', 'Cancelled')], default='backlog', max_length=20),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user