cuebook/CueObserve

View on GitHub
api/users/migrations/0002_customuser_is_staff.py

Summary

Maintainability
A
2 hrs
Test Coverage
Similar blocks of code found in 4 locations. Consider refactoring.
# Generated by Django 3.2.5 on 2021-08-17 08:31
Similar blocks of code found in 4 locations. Consider refactoring.
 
Similar blocks of code found in 4 locations. Consider refactoring.
from django.db import migrations, models
Similar blocks of code found in 4 locations. Consider refactoring.
 
Similar blocks of code found in 4 locations. Consider refactoring.
 
Similar blocks of code found in 4 locations. Consider refactoring.
class Migration(migrations.Migration):
Similar blocks of code found in 4 locations. Consider refactoring.
 
Similar blocks of code found in 4 locations. Consider refactoring.
dependencies = [
Similar blocks of code found in 4 locations. Consider refactoring.
('users', '0001_initial'),
Similar blocks of code found in 4 locations. Consider refactoring.
]
Similar blocks of code found in 4 locations. Consider refactoring.
 
Similar blocks of code found in 4 locations. Consider refactoring.
operations = [
Similar blocks of code found in 4 locations. Consider refactoring.
migrations.AddField(
Similar blocks of code found in 4 locations. Consider refactoring.
model_name='customuser',
Similar blocks of code found in 4 locations. Consider refactoring.
name='is_staff',
Similar blocks of code found in 4 locations. Consider refactoring.
field=models.BooleanField(default=False),
Similar blocks of code found in 4 locations. Consider refactoring.
),
Similar blocks of code found in 4 locations. Consider refactoring.
]