Skip to content
This repository was archived by the owner on Mar 3, 2020. It is now read-only.

Commit 9d19396

Browse files
author
Muzaffar Yousaf
committed
Migrations out-sync with models. TNL-4296
1 parent 4f88783 commit 9d19396

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
from django.conf import settings
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('oauth2', '0001_initial'),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name='accesstoken',
17+
name='user',
18+
field=models.ForeignKey(related_name='dop_access_token', to=settings.AUTH_USER_MODEL),
19+
),
20+
migrations.AlterField(
21+
model_name='grant',
22+
name='user',
23+
field=models.ForeignKey(related_name='dop_grant', to=settings.AUTH_USER_MODEL),
24+
),
25+
migrations.AlterField(
26+
model_name='refreshtoken',
27+
name='user',
28+
field=models.ForeignKey(related_name='dop_refresh_token', to=settings.AUTH_USER_MODEL),
29+
),
30+
]

0 commit comments

Comments
 (0)