This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
eodb/eodb/events/migrations/0004_formdata.py

23 lines
570 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-10-21 08:23
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('events', '0003_redmine'),
]
operations = [
migrations.CreateModel(
name='Formdata',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('author_datetime', models.DateTimeField()),
],
),
]