blob: 6141d9f92726e5f8f5cbb5046d76218fb25780a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2019-08-09 13:02
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('commcrawler', '0001_initial'),
]
operations = [
migrations.RemoveField(
model_name='crawllink',
name='result',
),
migrations.DeleteModel(
name='CrawlLink',
),
]
|