-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add field to GithubAppInstallation for suspended apps (#237)
- Loading branch information
1 parent
95c7e98
commit e954d86
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
shared/django_apps/codecov_auth/migrations/0056_githubappinstallation_is_suspended.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated by Django 4.2.13 on 2024-06-03 13:42 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("codecov_auth", "0055_session_login_session"), | ||
] | ||
|
||
# BEGIN; | ||
# -- | ||
# -- Add field is_suspended to githubappinstallation | ||
# -- | ||
# ALTER TABLE "codecov_auth_githubappinstallation" ADD COLUMN "is_suspended" boolean DEFAULT false NOT NULL; | ||
# ALTER TABLE "codecov_auth_githubappinstallation" ALTER COLUMN "is_suspended" DROP DEFAULT; | ||
# COMMIT; | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="githubappinstallation", | ||
name="is_suspended", | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters