
    g                         d Z ddlmZ ddlmZ ddlmZ  G d de      Z G d dej                        Z	 G d d	ej                        Z
 G d
 dej                  ej                        Zy)a@  
Your project-specific database tables (django calls them 'models').
The modelmanager.plugins.browser.models module already defines several
'abstract models' that can be used as extensible templates as has been done
below.

Here is an example:

```
from django.db import models
from modelmanager.plugins import browser

# the run table with an additional type field
class Run(metamodels.Run):
    type = models.FloatField('xyzmetric')

# or an entirely new model using the Django Model class
class Output_XYZ(models.Model):
    name = models.CharField(max_length=100)
    time = models.DateTimeField('Time', auto_now_add=True)
    type = models.FloatField('xyzmetric')
    run = models.OneToOneField(Run, on_delete=models.CASCADE)
```

Refer to https://docs.djangoproject.com/en/dev/ref/models/fields/ for fields
and documentation.
    )models)SwimRunc                       e Zd Zg dZy)Run)idtimetagsnotesN)__name__
__module____qualname__show_columns     V/p/tmp/wortmann/sachsen/scenarios/observations/merged_KlimRef/swimpy/browser/models.pyr   r   "   s
    2Lr   r   c                       e Zd Zy)	ParameterNr   r   r   r   r   r   r   r   (       r   r   c                       e Zd Zy)	IndicatorNr   r   r   r   r   r   ,   r   r   r   c                       e Zd Zy)FileNr   r   r   r   r   r   0   r   r   r   N)__doc__	django.dbr   %modelmanager.plugins.browser.databasemmmodelsswimpy.browserr   r   TaggedValuer   r   	RunTaggedr   r   r   r   <module>r!      s]   8  D "	' 		$$ 		$$ 		8x}} 	r   