We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68b2307 commit 995188fCopy full SHA for 995188f
rest_framework/authtoken/migrations/0003_tokenproxy.py
@@ -0,0 +1,25 @@
1
+# Generated by Django 3.1.1 on 2020-09-28 09:34
2
+
3
+from django.db import migrations
4
5
6
+class Migration(migrations.Migration):
7
8
+ dependencies = [
9
+ ('authtoken', '0002_auto_20160226_1747'),
10
+ ]
11
12
+ operations = [
13
+ migrations.CreateModel(
14
+ name='TokenProxy',
15
+ fields=[
16
+ ],
17
+ options={
18
+ 'verbose_name': 'token',
19
+ 'proxy': True,
20
+ 'indexes': [],
21
+ 'constraints': [],
22
+ },
23
+ bases=('authtoken.token',),
24
+ ),
25
0 commit comments