summaryrefslogtreecommitdiff
path: root/pgweb/misc/migrations/0001_bugidmap.py
blob: 5bcb8e26a8a6b0f5fe42739159da7409392c81e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2019-01-17 08:41
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='BugIdMap',
            fields=[
                ('id', models.IntegerField(primary_key=True, serialize=False)),
                ('messageid', models.CharField(max_length=500)),
            ],
        ),
    ]