I have created django project where following versions I have used. Python version 3.8.6 Django version 3.1.2 Oracle 11g I have run makemigrations which works all correct but migrate command gives me error i.e django.db.migrations.exceptions.MigrationSchemaMissing: Unable to create the django_migrations tabel (ORA-02000: missing ALWAYS keyword)
Database setting is following:
DATABASE = { 'default':{ 'ENGINE': 'django.db.backends.oracle',
'NAME': '10.1.5.87:1529/cdxlive', 'USER': 'cisadm', 'PASSWORD':
'cistechnology' } }
Table I am creating is
class Test(models.Model):
name = models.CharField()
score = models.CharField()