Re: Not Creating test DBs with PG backend

2018-08-29 Thread Tim Graham
Thanks for clarifying. I left an idea (reuse Oracle-specifc CREATE_DB setting, if it has the same meaning) on the ticket. Maybe we continue the discussion there for now. https://code.djangoproject.com/ticket/29717 On Tuesday, August 28, 2018 at 8:32:56 PM UTC-4, Curtis Maloney wrote: > > On

Re: Django : Change Backend as mysql and create sample example using django ORM

2018-08-29 Thread Tim Graham
This list is dedicated to the discussion of developing Django itself, not answering usage questions. Please continue the discussion on the django-users thread: https://groups.google.com/d/topic/django-users/iuspogePH3k/discussion On Wednesday, August 29, 2018 at 7:15:57 AM UTC-4, Sonali

RE: Django : Change Backend as mysql and create sample example using django ORM

2018-08-29 Thread Sonali Vighne
Hi, Below is the my models.py from django.db import models #from django_mysql.models import Model class Category(models.Model): name = models.CharField(max_length=128, unique=True) def __unicode__(self): return self.name class Page(models.Model):