kopia lustrzana https://gitlab.com/marnanel/chapeau
ThingUser status defaults to local
rodzic
b3bf7662b8
commit
af7ba26aa5
|
@ -39,7 +39,7 @@ CELERY = {
|
||||||
'task_ignore_result': True,
|
'task_ignore_result': True,
|
||||||
}
|
}
|
||||||
|
|
||||||
DEBUG = True
|
DEBUG = False
|
||||||
|
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
LOGGING = {
|
LOGGING = {
|
||||||
|
|
|
@ -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),
|
||||||
|
),
|
||||||
|
]
|
|
@ -12,7 +12,7 @@ class ThingUser(models.Model):
|
||||||
)
|
)
|
||||||
|
|
||||||
remote = models.BooleanField(
|
remote = models.BooleanField(
|
||||||
default=True,
|
default=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
|
Ładowanie…
Reference in New Issue