postgres integrated

This commit is contained in:
Peter Kotyczka 2024-04-17 17:33:11 +02:00
parent 8ff81e1df6
commit 656d206552
4 changed files with 21 additions and 5 deletions

Binary file not shown.

View File

@ -81,12 +81,22 @@ WSGI_APPLICATION = 'pyapp.wsgi.application'
# Database
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
# DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': BASE_DIR / 'db.sqlite3',
# }
# }
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'pyapp',
'USER': 'pyapp',
'PASSWORD': 'kotyczka',
'HOST': '192.168.0.9',
'PORT': '5434',
}}
# Password validation

View File

@ -10,4 +10,10 @@ create table pyapp_shoppingitem as select * from migration_shoppingitem where 1
commit;
drop table pyapp_product
commit;
commit;
select * from pyapp_shoppingitem;
delete from pyapp_shoppingitem where name like 'Proxy';