Skip to content

Commit

Permalink
migration issue solved
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarthak5598 committed Aug 9, 2024
1 parent e8a5d88 commit 6d85d82
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blt/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
},
},
}

DEFAULT_FILE_STORAGE = "django.core.files.storage.FileSystemStorage"
USERS_AVATAR_PATH = "avatars"
AVATAR_PATH = os.path.join(MEDIA_ROOT, USERS_AVATAR_PATH)

Expand Down Expand Up @@ -527,4 +527,4 @@
BITCOIN_RPC_USER = os.environ.get("BITCOIN_RPC_USER", "yourusername")
BITCOIN_RPC_PASSWORD = os.environ.get("BITCOIN_RPC_PASSWORD", "yourpassword")
BITCOIN_RPC_HOST = os.environ.get("BITCOIN_RPC_HOST", "localhost")
BITCOIN_RPC_PORT = os.environ.get("BITCOIN_RPC_PORT", "8332")
BITCOIN_RPC_PORT = os.environ.get("BITCOIN_RPC_PORT", "8332")
16 changes: 16 additions & 0 deletions website/migrations/0125_merge_20240810_0057.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Generated by Django 5.1 on 2024-08-09 19:27

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
(
"website",
"0106_remove_blockedip_address_range_and_more_squashed_0107_blockedip_reason_for_block",
),
("website", "0124_company_tags_domain_tags_project_tags_and_more"),
]

operations = []

0 comments on commit 6d85d82

Please sign in to comment.