Skip to content

Commit 01e84b8

Browse files
authored
Merge pull request #258 from CSSAInformationDepartment/master
Add longitude and latitude into DiscountMerchant model
2 parents cb55ccc + 5b6ae83 commit 01e84b8

10 files changed

Lines changed: 40350 additions & 2475 deletions

File tree

DBRestore/settings.py

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,29 @@
11
DATABASES = {
2-
'source': {
3-
'host': 'localhost',
4-
'port': 5432,
5-
'db': 'myCSSA_prod',
6-
'user': 'postgres',
7-
'password': 'postgres'
2+
"source": {
3+
"host": "localhost",
4+
"port": 5432,
5+
"db": "myCSSA_prod",
6+
"user": "postgres",
7+
"password": "postgres",
88
},
9-
'destination': {
10-
'host': 'localhost',
11-
'port': 5432,
12-
'db': 'CSSARestoreA',
13-
'user': 'postgres',
14-
'password': 'postgres'
9+
"destination": {
10+
"host": "localhost",
11+
"port": 5432,
12+
"db": "CSSARestoreA",
13+
"user": "postgres",
14+
"password": "postgres",
1515
},
16-
1716
}
1817

19-
EXCLUDED_TABLE = ["authtoken_token",
20-
"django_admin_log",
21-
"django_content_type",
22-
"django_migrations",
23-
"django_session",
24-
"django_site",
25-
"socialaccount_socialtoken",
26-
"guard_angel_httpaccesslogmodel"
27-
]
28-
29-
ANONYMOUS_MASKING_CONFIG = {
18+
EXCLUDED_TABLE = [
19+
"authtoken_token",
20+
"django_admin_log",
21+
"django_content_type",
22+
"django_migrations",
23+
"django_session",
24+
"django_site",
25+
"socialaccount_socialtoken",
26+
"guard_angel_httpaccesslogmodel",
27+
]
3028

31-
}
29+
ANONYMOUS_MASKING_CONFIG = {}

0 commit comments

Comments
 (0)