Skip to content

Commit b8feddb

Browse files
committed
Add missing accounts > User migration
1 parent c492f3e commit b8feddb

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Generated by Django 2.2.17 on 2021-01-28 23:17
2+
3+
import accounts.models
4+
from django.db import migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('accounts', '0012_user_is_service_account'),
11+
]
12+
13+
operations = [
14+
migrations.AlterModelManagers(
15+
name='user',
16+
managers=[
17+
('objects', accounts.models.UserManager()),
18+
],
19+
),
20+
]

0 commit comments

Comments
 (0)