Skip to content

Commit 995188f

Browse files
Add missing TokenProxy migration (encode#7557)
Fixes encode#7554
1 parent 68b2307 commit 995188f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)