Skip to content

Commit

Permalink
Update migrations after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
gravesm committed Oct 17, 2024
1 parent 5e2aa26 commit f847bdc
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 45 deletions.

This file was deleted.

16 changes: 0 additions & 16 deletions awx/main/migrations/0197_delete_oauth2application.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Generated by Django 4.2.10 on 2024-10-17 17:23

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('main', '0197_remove_sso_app_content'),
]

operations = [
migrations.AlterUniqueTogether(
name='oauth2application',
unique_together=None,
),
migrations.RemoveField(
model_name='oauth2application',
name='organization',
),
migrations.RemoveField(
model_name='oauth2application',
name='user',
),
migrations.RemoveField(
model_name='activitystream',
name='o_auth2_access_token',
),
migrations.RemoveField(
model_name='activitystream',
name='o_auth2_application',
),
migrations.DeleteModel(
name='OAuth2AccessToken',
),
migrations.DeleteModel(
name='OAuth2Application',
),
]

0 comments on commit f847bdc

Please sign in to comment.