File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed
sensorsafrica/openstuttgart/feinstaub/sensors/migrations Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ ADD . /src/
1616# Upgrade pip and setuptools
1717RUN pip install -q -U pip setuptools
1818
19- # Install feinstaub from codeforafrica
20- RUN pip install -q git+https://github.com/CodeForAfrica /feinstaub-api
19+ # Install feinstaub from opendata-stuttgart
20+ RUN pip install -q git+https://github.com/opendata-stuttgart /feinstaub-api
2121
2222# Install sensors.AFRICA-api and its dependencies
2323RUN pip install -q -U .
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+ # Generated by Django 1.11.29 on 2021-02-11 20:23
3+ from __future__ import unicode_literals
4+
5+ from django .db import migrations , models
6+
7+
8+ class Migration (migrations .Migration ):
9+
10+ dependencies = [
11+ ('sensors' , '0021_auto_20210204_1106' ),
12+ ]
13+
14+ operations = [
15+ migrations .AddIndex (
16+ model_name = 'sensorlocation' ,
17+ index = models .Index (fields = ['country' ], name = 'country_idx' ),
18+ ),
19+ migrations .AddIndex (
20+ model_name = 'sensorlocation' ,
21+ index = models .Index (fields = ['city' ], name = 'city_idx' ),
22+ ),
23+ ]
You can’t perform that action at this time.
0 commit comments