Browse Source

Added migration to install hstore_extension

master
Raphael Roberts 7 years ago
parent
commit
aff363ba73
  1. 11
      restscrape/migrations/0000_create_hstore.py

11
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()]
Loading…
Cancel
Save