ThingUser status defaults to local

thingy_objects
Marnanel Thurman 2018-10-08 22:01:30 +01:00
rodzic b3bf7662b8
commit af7ba26aa5
3 zmienionych plików z 20 dodań i 2 usunięć

Wyświetl plik

@ -39,7 +39,7 @@ CELERY = {
'task_ignore_result': True, 'task_ignore_result': True,
} }
DEBUG = True DEBUG = False
if DEBUG: if DEBUG:
LOGGING = { LOGGING = {

Wyświetl plik

@ -0,0 +1,18 @@
# Generated by Django 2.1.1 on 2018-10-08 16:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('things_for_testing', '0003_thingarticle_remote_url'),
]
operations = [
migrations.AlterField(
model_name='thinguser',
name='remote',
field=models.BooleanField(default=False),
),
]

Wyświetl plik

@ -12,7 +12,7 @@ class ThingUser(models.Model):
) )
remote = models.BooleanField( remote = models.BooleanField(
default=True, default=False,
) )
def __str__(self): def __str__(self):