From aff363ba73e9d169e33aa99c2dbf66e1c539ae40 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Wed, 26 Jun 2019 18:01:36 -0500 Subject: [PATCH] Added migration to install hstore_extension --- restscrape/migrations/0000_create_hstore.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 restscrape/migrations/0000_create_hstore.py diff --git a/restscrape/migrations/0000_create_hstore.py b/restscrape/migrations/0000_create_hstore.py new file mode 100644 index 0000000..c2df95c --- /dev/null +++ b/restscrape/migrations/0000_create_hstore.py @@ -0,0 +1,11 @@ +from __future__ import unicode_literals +from django.contrib.postgres.operations import HStoreExtension + +from django.db import migrations + + +class Migration(migrations.Migration): + + run_before = [("restscrape", "0001_initial")] + + operations = [HStoreExtension()]