Skip to content

Instantly share code, notes, and snippets.

View harunurkst's full-sized avatar

Harun Ur Rashid harunurkst

View GitHub Profile
@vubon
vubon / models.py
Last active January 29, 2022 06:01
Django BRIN index in PostgreSQL Database
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
"""