ojuso-map/apps/files/migrations/0001_initial.py

33 lines
782 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
2018-04-23 05:15:33 +00:00
# Generated by Django 1.11.6 on 2018-04-23 02:20
from __future__ import unicode_literals
2019-08-19 21:53:34 +00:00
from django.db import migrations
from django.db import models
class Migration(migrations.Migration):
initial = True
2019-08-19 21:37:32 +00:00
dependencies = []
operations = [
migrations.CreateModel(
2019-08-19 21:37:32 +00:00
name="File",
fields=[
2019-08-19 21:37:32 +00:00
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("file", models.FileField(upload_to=".")),
],
2019-08-19 21:37:32 +00:00
options={"abstract": False},
)
]