This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib.postgres.indexes import BrinIndex | |
from django.db import models | |
class SampleData(models.Model): | |
created_at = models.DateTimeField() | |
class Meta: | |
""" | |
You must need to use PostgreSQL DB unless you can't use BrinIndex | |
""" |