0012_mldata.py 705 Bytes
Newer Older
Vasyl Bodnaruk's avatar
Vasyl Bodnaruk committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
# -*- coding: utf-8 -*-
# Generated by Django 1.11.1 on 2017-07-23 16:50
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('scraper', '0011_auto_20170718_0846'),
    ]

    operations = [
        migrations.CreateModel(
            name='MLData',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('news_id', models.IntegerField()),
                ('tag_id', models.IntegerField()),
            ],
            options={
                'db_table': 'wp_esi_ml_data',
            },
        ),
    ]