26 lines
675 B
Python
26 lines
675 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='DBFile',
|
|
fields=[
|
|
('id', models.AutoField(
|
|
verbose_name='ID',
|
|
serialize=False,
|
|
auto_created=True,
|
|
primary_key=True)),
|
|
('name', models.CharField(max_length=100)),
|
|
('content_type', models.CharField(max_length=100)),
|
|
('b64', models.TextField()),
|
|
],
|
|
),
|
|
]
|