production
This commit is contained in:
@@ -18,7 +18,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
|
|||||||
SECRET_KEY = 'django-insecure-5*mm&uf5zq@t6nrs_5z8-_qtyapm^3&yz^wqqkc_a!v(!ulj-^'
|
SECRET_KEY = 'django-insecure-5*mm&uf5zq@t6nrs_5z8-_qtyapm^3&yz^wqqkc_a!v(!ulj-^'
|
||||||
|
|
||||||
# SECURITY WARNING: don't run with debug turned on in production!
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||||||
DEBUG = True
|
DEBUG = False
|
||||||
|
|
||||||
ALLOWED_HOSTS = ['*']
|
ALLOWED_HOSTS = ['*']
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
# Generated by Django 4.1.3 on 2022-12-05 16:07
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("Clientes", "0008_errorestimbres"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="clientes",
|
||||||
|
options={"ordering": ("-Activo", "RFC")},
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="clientes",
|
||||||
|
name="Activo",
|
||||||
|
field=models.BooleanField(default=False),
|
||||||
|
),
|
||||||
|
]
|
||||||
13
Clientes/migrations/0010_merge_20221205_1039.py
Normal file
13
Clientes/migrations/0010_merge_20221205_1039.py
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# Generated by Django 4.1.3 on 2022-12-05 16:39
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("Clientes", "0009_alter_clientes_options_alter_clientes_activo"),
|
||||||
|
("Clientes", "0009_alter_clientes_options_errorestimbres_modo_and_more"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = []
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
# Generated by Django 4.1.3 on 2022-12-05 16:46
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("Clientes", "0010_merge_20221205_1039"),
|
||||||
|
("Clientes", "0010_timbres_modo"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = []
|
||||||
Reference in New Issue
Block a user