diff --git a/cookbook/migrations/0001_enable_pgtrm.py b/cookbook/migrations/0001_enable_pgtrm.py new file mode 100644 index 000000000..17ef0f157 --- /dev/null +++ b/cookbook/migrations/0001_enable_pgtrm.py @@ -0,0 +1,8 @@ +from django.contrib.postgres.operations import TrigramExtension +from django.db import migrations + + +class Migration(migrations.Migration): + operations = [ + TrigramExtension(), + ]