Skip to content

Commit

Permalink
Add stubs for facility models.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarika committed Mar 27, 2015
1 parent 17dd332 commit d783263
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 0 deletions.
Empty file added facilities/__init__.py
Empty file.
15 changes: 15 additions & 0 deletions facilities/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from django.db import models


class service(models.Model):
pass

class Facility(models.Model):
"""
name
District
"""


class FacilityServices(models.Model):
pass
Empty file added facilities/serializers.py
Empty file.
Empty file added facilities/tests/__init__.py
Empty file.
Empty file added facilities/tests/test_models.py
Empty file.
Empty file added facilities/tests/test_views.py
Empty file.
Empty file added facilities/urls.py
Empty file.
Empty file added facilities/views.py
Empty file.

0 comments on commit d783263

Please sign in to comment.