DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME':'learnata', # Or path to database file if using sqlite3.
'USER':'root' , # user_name of db.
'PASSWORD': '' , # password of db.
'HOST': '', # database server address.(Provided by host when you create db).
'PORT': '', # database server port.(Provided by host when you create db). .
}
}