0025_enable_ltree_extension.py 446 B

1234567891011121314151617
  1. from django.contrib.postgres.operations import CreateExtension
  2. from django.db import migrations
  3. class Migration(migrations.Migration):
  4. """
  5. Enable the PostgreSQL ltree extension. Idempotent across apps; only one
  6. CreateExtension('ltree') needs to succeed during a single migrate run.
  7. """
  8. dependencies = [
  9. ('tenancy', '0024_default_ordering_indexes'),
  10. ]
  11. operations = [
  12. CreateExtension('ltree'),
  13. ]