Files
python-don/openstack_dashboard/don/models.py
Ramaraja 508920a121 Adding DON changes to the repo
Change-Id: I694a3483cfddd5cff8d0a95466087b0e0e9897ba
2016-08-01 10:06:44 +00:00

12 lines
262 B
Python

"""
Stub file to work around django bug: https://code.djangoproject.com/ticket/7198
"""
from django.db import models
class collector(models.Model):
# collector table fields
timestamp = models.CharField(max_length=50)
data = models.TextField()