Skip to content

Commit 7690724

Browse files
committed
Add migration to remove user field
1 parent 2463b51 commit 7690724

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from django.db import migrations, models
2+
3+
import oauth2_provider.generators
4+
import oauth2_provider.models
5+
6+
7+
class Migration(migrations.Migration):
8+
dependencies = [
9+
("account", "0038_application_allowed_origins_and_more"),
10+
]
11+
12+
operations = [
13+
migrations.RemoveField(
14+
model_name="user",
15+
name="address",
16+
)
17+
]

0 commit comments

Comments
 (0)