Files
mayan-edms/mayan/apps/quotas/migrations/0001_initial.py
2017-08-02 04:10:55 -04:00

30 lines
953 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-08-01 06:26
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Quota',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('backend_path', models.CharField(help_text='The dotted Python path to the backend class.', max_length=255, verbose_name='Backend path')),
('backend_data', models.TextField(blank=True, verbose_name='Backend data')),
('enabled', models.BooleanField(default=True, verbose_name='Enabled')),
],
options={
'verbose_name': 'Quota',
'verbose_name_plural': 'Quotas',
},
),
]