Skip to content

Commit

Permalink
Add Migration
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-salles committed Sep 23, 2022
1 parent 3d4d7ce commit 1fb9a70
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions bothub/common/migrations/0115_auto_20220923_1543.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.15 on 2022-09-23 15:43

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('common', '0114_alter_repositoryversionlanguage_unique_together'),
]

operations = [
migrations.AlterField(
model_name='organizationauthorization',
name='role',
field=models.PositiveIntegerField(choices=[(0, 'not set'), (1, 'user'), (2, 'contributor'), (3, 'admin')], default=0, verbose_name='role'),
),
migrations.AlterField(
model_name='repositoryauthorization',
name='role',
field=models.PositiveIntegerField(choices=[(0, 'not set'), (1, 'user'), (2, 'contributor'), (3, 'admin')], default=0, verbose_name='role'),
),
]

0 comments on commit 1fb9a70

Please sign in to comment.