build: merge frontend and backend into a single repo
This commit is contained in:
parent
10ce333e6f
commit
26ec1e8c15
126 changed files with 8280 additions and 1 deletions
18
apiserver/plane/db/migrations/0006_alter_cycle_status.py
Normal file
18
apiserver/plane/db/migrations/0006_alter_cycle_status.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.14 on 2022-11-16 14:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('db', '0005_auto_20221114_2127'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='cycle',
|
||||
name='status',
|
||||
field=models.CharField(choices=[('draft', 'Draft'), ('started', 'Started'), ('completed', 'Completed')], default='draft', max_length=255, verbose_name='Cycle Status'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue