Skip to content

Commit

Permalink
Drop compound datatypes, for #752.
Browse files Browse the repository at this point in the history
  • Loading branch information
donkirkby committed Jun 21, 2019
1 parent 8c8e85d commit 9440d35
Show file tree
Hide file tree
Showing 36 changed files with 293 additions and 3,569 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ before_install:
- sudo apt-get install -y -q nodejs dh-autoreconf build-essential libarchive-dev squashfs-tools
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install -r requirements-dev.txt ; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then pip install -r requirements-test.py34.txt ; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then pip install -r requirements-dev.py34.txt ; fi
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
- node --version
- nodejs --version # Not relevant?
Expand Down
88 changes: 88 additions & 0 deletions kive/datachecking/migrations/0108_drop_all.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.21 on 2019-06-20 16:46
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('datachecking', '0107_remove_execlog_refs'),
]

operations = [
migrations.RemoveField(
model_name='baddata',
name='contentchecklog',
),
migrations.RemoveField(
model_name='blankcell',
name='cellerror',
),
migrations.RemoveField(
model_name='cellerror',
name='baddata',
),
migrations.RemoveField(
model_name='cellerror',
name='column',
),
migrations.RemoveField(
model_name='cellerror',
name='content_type',
),
migrations.RemoveField(
model_name='contentchecklog',
name='dataset',
),
migrations.RemoveField(
model_name='contentchecklog',
name='user',
),
migrations.RemoveField(
model_name='integritychecklog',
name='dataset',
),
migrations.RemoveField(
model_name='integritychecklog',
name='user',
),
migrations.RemoveField(
model_name='md5conflict',
name='conflicting_dataset',
),
migrations.RemoveField(
model_name='md5conflict',
name='integritychecklog',
),
migrations.RemoveField(
model_name='verificationlog',
name='CDTM',
),
migrations.RemoveField(
model_name='verificationlog',
name='contentchecklog',
),
migrations.DeleteModel(
name='BadData',
),
migrations.DeleteModel(
name='BlankCell',
),
migrations.DeleteModel(
name='CellError',
),
migrations.DeleteModel(
name='ContentCheckLog',
),
migrations.DeleteModel(
name='IntegrityCheckLog',
),
migrations.DeleteModel(
name='MD5Conflict',
),
migrations.DeleteModel(
name='VerificationLog',
),
]
Loading

0 comments on commit 9440d35

Please sign in to comment.